/* =============================================
   WORKCIRCLE — Full Responsive CSS
   Theme: #1482d5 Blue
   Breakpoints:
     xs  : 360px  (small phones)
     sm  : 480px  (phones)
     md  : 768px  (tablets)
     lg  : 1024px (small laptops)
     xl  : 1280px (laptops)
     2xl : 1440px (desktops)
   ============================================= */

/* ============ CSS VARIABLES ============ */
:root {
  --ink:        #0b1929;
  --paper:      #f0f6ff;
  --cream:      #ddeaf8;
  --blue:       #1482d5;
  --blue-dark:  #0d65ab;
  --blue-light: #5aaff0;
  --blue-pale:  #cce4f7;
  --navy:       #0b2540;
  --muted:      #5a7a96;
  --white:      #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 12px rgba(20,130,213,.08);
  --shadow-md: 0 8px 32px rgba(20,130,213,.14);
  --shadow-lg: 0 20px 60px rgba(20,130,213,.22);

  --transition:      .4s cubic-bezier(.25,.46,.45,.94);
  --transition-fast: .2s ease;

  /* Fluid spacing scale */
  --space-xs:  clamp(.5rem,  1vw,   .75rem);
  --space-sm:  clamp(.75rem, 1.5vw, 1rem);
  --space-md:  clamp(1rem,   2vw,   1.5rem);
  --space-lg:  clamp(1.5rem, 3vw,   2.5rem);
  --space-xl:  clamp(2rem,   5vw,   4rem);
  --space-2xl: clamp(3rem,   7vw,   6rem);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }
button { cursor: pointer; }

/* ============ CUSTOM CURSOR (desktop only) ============ */
.cursor {
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s ease;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s ease, opacity .2s ease;
  opacity: .6;
}

/* ============ UTILITY ============ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section { padding: clamp(60px, 8vw, 110px) 0; }

.section-label {
  display: inline-block;
  font-size: clamp(.65rem, 1.5vw, .72rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .8rem;
  position: relative;
  padding-left: 1.8rem;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.2rem; height: 1.5px;
  background: var(--blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--blue); font-weight: 300; }
.section-sub { margin-top: .8rem; color: var(--muted); font-size: clamp(.9rem, 1.8vw, 1.05rem); line-height: 1.7; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto clamp(2rem, 5vw, 4rem); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-label { color: var(--blue-light); }
.section-header.light .section-label::before { background: var(--blue-light); }
.section-header.light .section-sub { color: rgba(255,255,255,.7); }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: var(--white);
  font-size: clamp(.82rem, 1.5vw, .9rem);
  font-weight: 600; letter-spacing: .04em;
  padding: .8rem 2rem; border-radius: 50px; border: none;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
  white-space: nowrap; text-align: center;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.18);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,130,213,.45); background: var(--blue-dark); }
.btn-primary.full { width: 100%; border-radius: var(--radius); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--white);
  font-size: clamp(.82rem, 1.5vw, .9rem); font-weight: 500;
  padding: .78rem 2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.55);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; text-align: center;
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-2px); }

.btn-nav {
  background: var(--blue); color: var(--white);
  font-size: .82rem; font-weight: 600;
  padding: .55rem 1.4rem; border-radius: 50px;
  transition: var(--transition-fast); white-space: nowrap;
  display: inline-block;
}
.btn-nav:hover { background: var(--blue-dark); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(240,246,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(20,130,213,.1);
  padding: .75rem 0;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700; color: var(--white);
  flex-shrink: 0; transition: color .3s;
}
.logo span { color: var(--blue-light); }
.navbar.scrolled .logo { color: var(--ink); }
.navbar.scrolled .logo span { color: var(--blue); }

.nav-links { display: flex; gap: clamp(1rem, 2vw, 2rem); margin-left: auto; }
.nav-links a {
  font-size: clamp(.8rem, 1.2vw, .88rem); font-weight: 500;
  color: rgba(255,255,255,.88); transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  height: 1.5px; width: 0; background: var(--blue-light);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--blue-light); }
.navbar.scrolled .nav-links a { color: var(--ink); }
.navbar.scrolled .nav-links a:hover { color: var(--blue); }
.navbar.scrolled .nav-links a::after { background: var(--blue); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--ink); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.nav-links.open {
  display: flex !important; flex-direction: column;
  position: fixed; inset: 0; top: 0;
  background: var(--navy);
  align-items: center; justify-content: center;
  gap: 2rem; z-index: 850;
  padding-top: 5rem;
}
.nav-links.open a {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  color: var(--white); font-weight: 500;
}
.nav-links.open a::after { background: var(--blue-light); }
.nav-links.open .btn-nav-mobile {
  background: var(--blue); color: var(--white);
  font-size: 1rem; padding: .8rem 2.5rem;
  border-radius: 50px; font-weight: 600; margin-top: .5rem;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  transform: scale(1.06);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,25,41,.9) 0%, rgba(20,130,213,.28) 60%, rgba(11,25,41,.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding: clamp(5rem, 12vw, 8rem) clamp(1rem, 4vw, 2rem) 4rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(20,130,213,.25); border: 1px solid rgba(90,175,240,.45);
  color: var(--blue-light); font-size: clamp(.65rem, 1.5vw, .75rem);
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  font-weight: 900; line-height: 1.0; color: var(--white);
  margin-bottom: 1.5rem; max-width: 720px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--blue-light); }
.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.78); line-height: 1.7;
  max-width: 480px; margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; right: clamp(1rem, 3vw, 3rem); bottom: 2.5rem;
  display: flex; align-items: center; gap: .8rem;
  color: rgba(255,255,255,.5); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  writing-mode: vertical-rl; z-index: 2;
}
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, rgba(90,175,240,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

.hero-highlights {
  position: absolute; right: clamp(1rem, 4vw, 4rem); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .7rem; z-index: 2;
}
.highlight-pill {
  background: rgba(20,130,213,.2); backdrop-filter: blur(12px);
  border: 1px solid rgba(90,175,240,.3); color: var(--white);
  font-size: clamp(.72rem, 1.2vw, .82rem); font-weight: 500;
  padding: .55rem 1.1rem; border-radius: 50px;
  display: flex; align-items: center; gap: .5rem;
}
.highlight-pill span { font-size: .95rem; }

/* ============ ANIMATIONS ============ */
.reveal-up {
  opacity: 0; transform: translateY(30px);
  animation: revealUp .8s var(--transition) forwards;
}
.reveal-up:nth-child(1) { animation-delay: .1s; }
.reveal-up:nth-child(2) { animation-delay: .3s; }
.reveal-up:nth-child(3) { animation-delay: .5s; }
.reveal-up:nth-child(4) { animation-delay: .7s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.reveal-right {
  opacity: 0; transform: translateX(30px);
  animation: revealRight .7s ease forwards; animation-delay: 1s;
}
@keyframes revealRight { to { opacity: 1; transform: translateX(0); } }

.animate-in { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.animate-in.visible { opacity: 1; transform: none; }

/* ============ TICKER ============ */
.ticker-wrap { background: var(--blue); overflow: hidden; padding: .85rem 0; }
.ticker { display: flex; gap: 2rem; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker span { color: rgba(255,255,255,.92); font-size: clamp(.75rem, 1.5vw, .85rem); font-weight: 500; letter-spacing: .06em; flex-shrink: 0; }
.ticker .dot { color: rgba(255,255,255,.35); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ ABOUT ============ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-images { position: relative; height: clamp(320px, 50vw, 560px); }
.about-img-main {
  position: absolute; left: 0; top: 0;
  width: 75%; height: 80%;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-side {
  position: absolute; right: 0; bottom: 0;
  width: 50%; height: 52%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 4px solid var(--white);
}
.about-stat-card {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: var(--blue); color: var(--white);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-md); z-index: 2;
}
.about-stat-card strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 900; line-height: 1;
}
.about-stat-card span { font-size: .78rem; font-weight: 500; opacity: .85; }
.about-text { padding: .5rem 0; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-size: clamp(.88rem, 1.5vw, 1rem); }
.about-pillars { display: flex; flex-direction: column; gap: .8rem; margin: 1.5rem 0; }
.pillar {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--paper);
  border-radius: var(--radius); border-left: 3px solid var(--blue);
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: .92rem; font-weight: 600; margin-bottom: .1rem; }
.pillar span { font-size: .8rem; color: var(--muted); }

/* ============ SPACES ============ */
.spaces { background: var(--paper); }
.spaces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.spaces-grid .space-card:nth-child(4) { grid-column: 1 / 2; }
.spaces-grid .space-card:nth-child(5) { grid-column: 2 / 4; }

.space-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
}
.space-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.space-img { height: clamp(160px, 20vw, 220px); overflow: hidden; flex-shrink: 0; }
.space-img img { transition: transform .6s ease; }
.space-card:hover .space-img img { transform: scale(1.07); }
.space-content { padding: clamp(1.1rem, 2vw, 1.6rem); display: flex; flex-direction: column; flex: 1; }
.space-num { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .14em; color: var(--blue); margin-bottom: .4rem; }
.space-content h3 { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: .6rem; }
.space-content p { font-size: clamp(.82rem, 1.4vw, .88rem); color: var(--muted); line-height: 1.65; flex: 1; }
.space-link { display: inline-block; margin-top: .9rem; font-size: .83rem; font-weight: 600; color: var(--blue); transition: color .2s, transform .2s; align-self: flex-start; }
.space-link:hover { transform: translateX(4px); color: var(--blue-dark); }

/* ============ WHY ============ */
.why { position: relative; background: var(--navy); padding: clamp(60px, 8vw, 110px) 0; }
.why-bg { position: absolute; inset: 0; overflow: hidden; }
.why-bg img { opacity: .1; }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,25,41,.95) 0%, rgba(20,130,213,.12) 100%); }
.why .container { position: relative; z-index: 1; }
.why .section-title { color: var(--white); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); margin-top: 2.5rem; }
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(90,175,240,.1);
  border-radius: var(--radius-lg); padding: clamp(1.2rem, 2vw, 2rem);
  transition: var(--transition); backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(20,130,213,.15); border-color: rgba(20,130,213,.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(20,130,213,.2); }
.why-icon { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .9rem; }
.why-card h4 { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.why-card p { font-size: clamp(.8rem, 1.4vw, .88rem); color: rgba(255,255,255,.5); line-height: 1.65; }

/* ============ PRICING ============ */
.pricing { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); align-items: start; }
.price-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; border: 1.5px solid transparent;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale); }
.price-card.featured {
  background: var(--blue); color: var(--white);
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 24px 70px rgba(20,130,213,.4);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-12px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem 1.1rem; border-radius: 50px; white-space: nowrap;
}
.price-tag { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .7rem; }
.price-card.featured .price-tag { color: rgba(255,255,255,.7); }
.price-amount { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1; margin-bottom: 1rem; color: var(--ink); }
.price-card.featured .price-amount { color: var(--white); }
.price-amount span { font-size: .95rem; font-weight: 400; opacity: .65; }
.price-card p { font-size: clamp(.82rem, 1.4vw, .88rem); color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.price-card.featured p { color: rgba(255,255,255,.75); }
.price-features { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.8rem; }
.price-features li { font-size: clamp(.82rem, 1.4vw, .88rem); color: var(--muted); }
.price-card.featured .price-features li { color: rgba(255,255,255,.85); }
.price-card.featured .btn-primary { background: var(--white); color: var(--blue); }
.price-card.featured .btn-primary:hover { background: var(--blue-pale); box-shadow: none; transform: translateY(-2px); }
.pricing-footer { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .95rem; }
.pricing-footer a { color: var(--blue); font-weight: 600; }

/* ============ LOCATION ============ */
.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1.8rem; font-size: clamp(.88rem, 1.5vw, 1rem); }
.location-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.loc-item { display: flex; align-items: center; gap: .75rem; font-size: clamp(.85rem, 1.5vw, .9rem); font-weight: 500; }
.loc-item span { font-size: 1.1rem; flex-shrink: 0; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: clamp(280px, 40vw, 420px); border: 3px solid var(--blue-pale); }
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ============ GALLERY ============ */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: clamp(180px, 22vw, 260px) clamp(180px, 22vw, 260px);
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: 1 / 3; }
.gallery-item.wide { grid-column: 2 / 4; }
.gallery-item img { transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,.8), transparent 60%);
  opacity: 0; transition: opacity .4s ease;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: .88rem; font-weight: 600; letter-spacing: .05em; }

/* ============ CONTACT ============ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-info p { color: var(--muted); line-height: 1.75; margin-bottom: 1.8rem; font-size: clamp(.88rem, 1.5vw, 1rem); }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.8rem; }
.contact-item { display: flex; align-items: flex-start; gap: .9rem; }
.contact-icon {
  font-size: 1.1rem; width: 42px; height: 42px; min-width: 42px;
  background: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--blue-pale);
}
.contact-item strong { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.contact-item span { font-size: clamp(.88rem, 1.5vw, .95rem); font-weight: 500; }
.social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-link { font-size: .8rem; font-weight: 600; color: var(--blue); padding: .4rem 1rem; border: 1.5px solid var(--blue); border-radius: 50px; transition: var(--transition-fast); }
.social-link:hover { background: var(--blue); color: var(--white); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: clamp(1.5rem, 3vw, 2.8rem); box-shadow: var(--shadow-md); border: 1.5px solid var(--blue-pale); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--cream);
  border-radius: var(--radius); font-size: clamp(.88rem, 1.5vw, .93rem);
  color: var(--ink); background: var(--paper);
  transition: border-color .2s, box-shadow .2s; outline: none; resize: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,130,213,.12); background: var(--white);
}

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: clamp(3rem, 6vw, 5rem) 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem;
}
.footer-brand p { font-size: clamp(.82rem, 1.4vw, .88rem); margin-top: .8rem; line-height: 1.7; max-width: 260px; }
.footer-brand .logo { color: var(--white); font-size: clamp(1.2rem, 2.5vw, 1.4rem); }
.footer-brand .logo span { color: var(--blue-light); }
.footer-links strong, .footer-contact strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: clamp(.82rem, 1.4vw, .88rem); transition: color .2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-contact p { font-size: clamp(.82rem, 1.4vw, .88rem); margin-bottom: .55rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; opacity: .45; flex-wrap: wrap; gap: .5rem; }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--blue-dark); color: var(--white);
  padding: .9rem 2rem; border-radius: 50px;
  font-size: clamp(.82rem, 1.5vw, .9rem); font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============ PAGE LOADER ============ */
.page-loader {
  position: fixed; inset: 0; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9990; transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-text { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); color: var(--white); letter-spacing: .08em; animation: loaderPulse 1.2s ease infinite alternate; }
.loader-text span { color: var(--blue-light); }
@keyframes loaderPulse { from { opacity: .3; } to { opacity: 1; } }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ------ 1280px — Large Laptop ------ */
@media (max-width: 1280px) {
  .hero-highlights { right: 2rem; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
}

/* ------ 1024px — Small Laptop / Tablet Landscape ------ */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { gap: 1.2rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { height: clamp(280px, 55vw, 420px); }

  /* Spaces */
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .spaces-grid .space-card:nth-child(4) { grid-column: auto; }
  .spaces-grid .space-card:nth-child(5) { grid-column: auto; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: clamp(260px, 40vw, 380px); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Hide hero float elements */
  .hero-highlights { display: none; }
  .hero-scroll { display: none; }
}

/* ------ 768px — Tablet Portrait ------ */
@media (max-width: 768px) {
  /* Body */
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  /* Nav — switch to hamburger */
  .nav-links:not(.open) { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding-top: 5.5rem; }
  .hero-sub { max-width: 100%; }

  /* About */
  .about-images { height: clamp(260px, 60vw, 380px); }
  .about-img-side { display: none; } /* simplify on tablet */

  /* Spaces */
  .spaces-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-rows: clamp(160px, 28vw, 240px);
  }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
}

/* ------ 600px — Large Phone ------ */
@media (max-width: 600px) {
  /* About layout simplify */
  .about-grid { gap: 1.5rem; }
  .about-images { height: clamp(220px, 65vw, 320px); }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Pricing — stack all */
  .pricing-grid { gap: .8rem; }

  /* Gallery 1-col */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(180px, 55vw, 260px);
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
}

/* ------ 480px — Small Phone ------ */
@media (max-width: 480px) {
  /* Spacing */
  .section { padding: clamp(48px, 10vw, 70px) 0; }
  .section-header { margin-bottom: 2rem; }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }

  /* About */
  .about-stat-card { left: .8rem; bottom: .8rem; padding: .8rem 1.2rem; }
  .about-stat-card strong { font-size: 1.6rem; }
  .pillar { padding: .8rem 1rem; gap: .8rem; }

  /* Spaces */
  .space-img { height: clamp(140px, 45vw, 200px); }

  /* Why cards */
  .why-card { padding: 1.2rem; }

  /* Pricing */
  .price-card { padding: 1.5rem; }
  .pricing-footer { font-size: .85rem; }

  /* Contact */
  .contact-form-wrap { padding: 1.4rem; border-radius: var(--radius-lg); }
  .social-links { gap: .5rem; }
  .social-link { font-size: .75rem; padding: .35rem .85rem; }

  /* Footer */
  .footer-brand p { max-width: 100%; }
  .footer-bottom { font-size: .72rem; }

  /* Toast */
  .toast { left: 1rem; right: 1rem; width: auto; transform: translateX(0) translateY(100px); }
  .toast.show { transform: translateX(0) translateY(0); }
}

/* ------ 360px — Tiny Phone (e.g. Galaxy A series) ------ */
@media (max-width: 360px) {
  .container { padding: 0 .9rem; }

  .logo { font-size: 1.1rem; }

  .hero-title { font-size: clamp(2rem, 11vw, 2.6rem); }
  .hero-badge { font-size: .6rem; padding: .35rem .9rem; }
  .hero-sub { font-size: .88rem; }

  .btn-primary, .btn-secondary { padding: .7rem 1.4rem; font-size: .82rem; }

  .section-title { font-size: clamp(1.6rem, 8vw, 2rem); }

  .about-images { height: 200px; }
  .about-stat-card { display: none; } /* too cramped */

  .why-card { padding: 1rem; }
  .why-icon { font-size: 1.4rem; }

  .contact-form-wrap { padding: 1.1rem; }
  .form-group input, .form-group select, .form-group textarea { padding: .7rem .8rem; font-size: .85rem; }

  .footer-grid { gap: 1.2rem; }

  .nav-links.open { gap: 1.4rem; }
  .nav-links.open a { font-size: 1.1rem; }
}

/* ------ Touch devices — remove hover states ------ */
@media (hover: none) {
  .btn-primary:hover { transform: none; box-shadow: none; }
  .btn-secondary:hover { transform: none; }
  .space-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .why-card:hover { transform: none; background: rgba(255,255,255,.04); border-color: rgba(90,175,240,.1); }
  .price-card:hover { transform: none; box-shadow: var(--shadow-sm); border-color: transparent; }
  .price-card.featured:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
  .gallery-overlay { opacity: 1; } /* always show labels on touch */
  .space-link:hover { transform: none; }
}

/* ------ Reduced motion ------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-img { animation: none; transform: scale(1.08); }
  .ticker { animation: none; }
  .animate-in { opacity: 1; transform: none; }
  .reveal-up, .reveal-right { opacity: 1; transform: none; }
}

/* ------ Print ------ */
@media print {
  .navbar, .cursor, .cursor-follower, .ticker-wrap, .hero-scroll, .hero-highlights, .page-loader, .toast { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { cursor: auto; color: #000; background: #fff; }
  .section { padding: 2rem 0; }
  .section-title { font-size: 1.6rem; }
  a { color: var(--blue); }
}
