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

:root {
  --accent: #06858e;
  --accent-dark: #055a61;
  --accent-light: #e6f4f5;
  --text: #1a1f2e;
  --text-muted: #5a6270;
  --bg: #ffffff;
  --bg-alt: #f7f9fa;
  --border: #e2e8ec;
  --shadow: 0 2px 12px rgba(26,31,46,0.08);
  --shadow-hover: 0 8px 24px rgba(26,31,46,0.12);
  --radius: 10px;
  --max-w: 1180px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--accent-dark); }

.nav-desktop { display: flex; gap: 28px; align-items: center; }

.nav-desktop a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  z-index: 99;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.nav-mobile a:hover { color: var(--accent); }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,133,142,0.88) 0%, rgba(26,31,46,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 80px 0;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.btn-secondary {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* Sections */
section { padding: 72px 0; }

section.bg-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 14px;
  color: var(--text);
}

.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.section-header.left { text-align: left; margin-left: 0; }

/* Page header */
.page-header {
  background: var(--accent-light);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--accent); }

/* Cards */
.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-img.tall { height: 260px; }

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body { padding: 24px; }

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card-body p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 14px; }

.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Features / benefits */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 28px 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

.feature-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-item p { color: var(--text-muted); font-size: 0.92rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.step {
  padding: 28px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  font-size: 1rem;
}

.step h3 { font-size: 1rem; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.88rem; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* Reviews preview */
.review-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }

.review-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author { font-weight: 600; font-size: 0.9rem; }
.review-role { color: var(--text-muted); font-size: 0.82rem; }

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.cta-band p { opacity: 0.9; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.cta-band .btn-primary:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0 4px;
}

.pricing-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question:hover { background: var(--bg-alt); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

.faq-toggle { font-size: 1.2rem; color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.team-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 22px 18px; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-bio { color: var(--text-muted); font-size: 0.85rem; }

/* Location cards */
.location-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.location-img img { width: 100%; height: 100%; object-fit: cover; }

.location-body { padding: 24px; }
.location-body h3 { margin-bottom: 10px; }
.location-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 6px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }

.contact-info-block { margin-bottom: 28px; }
.contact-info-block h3 { font-size: 1rem; margin-bottom: 8px; color: var(--accent); }
.contact-info-block p { color: var(--text-muted); }

.contact-form {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-success {
  display: none;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 16px;
  border-radius: 6px;
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}

.form-success.show { display: block; }

.map-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}

.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card .card-img { height: 200px; }

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.article-content h2 { font-size: 1.4rem; margin: 32px 0 14px; }
.article-content p { margin-bottom: 18px; color: var(--text-muted); }
.article-content .article-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 28px 0;
}

.article-content .article-img img { width: 100%; height: 100%; object-fit: cover; }

/* Space detail */
.space-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }

.space-gallery {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.space-gallery img { width: 100%; height: 100%; object-fit: cover; }

.space-specs {
  list-style: none;
  margin: 24px 0;
}

.space-specs li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
}

.space-specs li span:last-child { color: var(--text-muted); }

/* Legal */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-content h2 { font-size: 1.25rem; margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 16px; color: var(--text-muted); font-size: 0.93rem; }
.legal-content ol { margin: 12px 0 16px 24px; color: var(--text-muted); font-size: 0.93rem; }
.legal-content ol li { margin-bottom: 8px; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 0.88rem;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

.cookie-table th { background: var(--bg-alt); font-weight: 600; }
.cookie-table td { color: var(--text-muted); }

.doc-id {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Two col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.two-col img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-block { max-width: 780px; }
.content-block p { color: var(--text-muted); margin-bottom: 16px; }
.content-block h2 { font-size: 1.5rem; margin-bottom: 16px; }
.content-block h3 { font-size: 1.15rem; margin: 24px 0 10px; }

/* Footer */
.site-footer {
  background: #141820;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.55);
  margin-right: 20px;
  font-size: 0.82rem;
}

.footer-legal a:hover { color: #fff; }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Responsive */
@media (max-width: 1024px) {
  .card-grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .space-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }

  .card-grid-2, .card-grid-3, .card-grid-4,
  .pricing-grid, .blog-grid, .team-grid,
  .feature-grid, .steps, .stats-row,
  .two-col, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  section { padding: 52px 0; }
  .hero { min-height: 440px; }
  .hero-content { padding: 56px 0; }
}
