:root {
  --bg: #ffffff;
  --bg-tint: #f3f8fd;
  --surface: #eff5fb;
  --surface-2: #e3eef8;
  --border: #d9e4ef;
  --border-soft: #e7eef5;
  --text: #0e1f33;
  --text-muted: #51637a;
  --accent: #1d6fb4;
  --accent-dark: #15527e;
  --accent-light: #4f97cf;
  --accent-soft: #dceaf6;
  --accent-tint: #eef5fb;
  --gradient-hero: radial-gradient(ellipse 80% 60% at 70% 20%, #cfe3f5 0%, #e7f1f9 35%, #ffffff 75%);
  --gradient-blue: linear-gradient(135deg, #1d6fb4 0%, #2e8fd4 100%);
  --gradient-blue-deep: linear-gradient(135deg, #0e3a63 0%, #1d6fb4 50%, #2e8fd4 100%);
  --gradient-soft: linear-gradient(180deg, #f3f8fd 0%, #ffffff 100%);
  --shadow-sm: 0 1px 2px rgba(15, 35, 60, 0.05), 0 2px 6px rgba(15, 35, 60, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 35, 60, 0.06), 0 12px 32px rgba(15, 35, 60, 0.07);
  --shadow-lg: 0 8px 24px rgba(15, 35, 60, 0.08), 0 24px 60px rgba(15, 35, 60, 0.10);
  --shadow-blue: 0 8px 24px rgba(29, 111, 180, 0.16), 0 20px 48px rgba(29, 111, 180, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, .brand-name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accent-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 19px;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}
.nav a:hover::after { width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.15);
  color: #cfe3f5;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 112px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: #87c5ed;
  top: -120px;
  right: -80px;
}

.blob-2 {
  width: 320px;
  height: 320px;
  background: #b8dbf2;
  bottom: -100px;
  left: 10%;
  opacity: 0.7;
}

.blob-3 {
  width: 220px;
  height: 220px;
  background: #5ba1d6;
  top: 40%;
  left: -60px;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.04;
  margin: 0 0 24px;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 111, 180, 0.28), 0 24px 60px rgba(29, 111, 180, 0.22);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: var(--gradient-blue);
  border-radius: var(--radius-lg);
  opacity: 0.18;
  z-index: 0;
}

.hero-image img {
  position: relative;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

/* ---------- Sections ---------- */
section {
  padding: 104px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head .eyebrow { margin-bottom: 18px; }

.section-title {
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.section-title-left { text-align: left; }
.section-title-light { color: #fff; }

.section-lead {
  color: var(--text-muted);
  font-size: 17.5px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-lead-light { color: #c8dbed; }

/* ---------- Showcase (before/after, hero area) ---------- */
.showcase {
  background: var(--bg);
  padding: 96px 0 112px;
  position: relative;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.showcase-item {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.showcase-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-img-wrap img {
  transform: scale(1.03);
}

.showcase-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--accent-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 35, 60, 0.08);
}

.showcase-item figcaption {
  padding: 20px 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ---------- About ---------- */
.about {
  background: var(--gradient-soft);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--gradient-blue);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 0;
}

.about-image img {
  position: relative;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.about-text .eyebrow { margin-bottom: 16px; }

.about-text p {
  color: var(--text-muted);
  font-size: 16.5px;
  margin: 0 0 16px;
  max-width: 520px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--gradient-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(29, 111, 180, 0.2);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services {
  background: var(--bg-tint);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.25s ease;
}

.service-card:hover .service-icon {
  background: var(--gradient-blue);
  color: #fff;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg);
}

.price-block {
  margin-bottom: 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-heading {
  margin: 0;
  padding: 18px 28px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 14px 28px;
  border-top: 1px solid var(--border-soft);
  font-size: 15px;
}

.price-table tr:first-child td { border-top: none; }

.price-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
  color: var(--accent-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.price-table td:first-child { color: var(--text-muted); }

.price-table tr:hover td { background: var(--accent-tint); }

.price-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  font-style: italic;
  margin-top: 40px;
}

/* ---------- Interior ---------- */
.interior {
  background: var(--gradient-soft);
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.interior-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interior-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.interior-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  background: var(--gradient-blue-deep);
  color: #fff;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(135, 197, 237, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(46, 143, 212, 0.35), transparent 60%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  z-index: 1;
}

.contact-text .eyebrow { margin-bottom: 18px; }

.contact-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px 28px;
  margin: 36px 0 0;
  font-size: 16px;
}

.contact-list dt {
  font-weight: 700;
  color: #87c5ed;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  padding-top: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-list dd {
  margin: 0;
  color: #eaf2fa;
  line-height: 1.65;
}

.contact-list a {
  color: #fff;
  font-weight: 600;
}

.contact-list a:hover { color: #cfe3f5; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.9);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #081a2e;
  color: #8da2bb;
  padding: 56px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.footer-logo { height: 36px; }

.footer-meta {
  margin: 0;
  font-size: 15px;
  color: #b8c8de;
}

.footer-meta a {
  color: #87c5ed;
  font-weight: 600;
}

.footer-copy {
  margin: 8px 0 0;
  font-size: 13px;
  color: #5a7090;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  section { padding: 80px 0; }
  .showcase { padding: 80px 0; }

  .hero-inner,
  .contact-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image img,
  .about-image img {
    height: 340px;
  }

  .hero-image::before,
  .about-image::before { display: none; }

  .interior-grid {
    grid-template-columns: 1fr;
  }

  .contact-text .section-title,
  .section-title-left,
  .about-text p {
    text-align: left;
  }

  .about-text p { max-width: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }

  .container { padding: 0 18px; }

  section { padding: 56px 0; }

  .hero {
    padding: 44px 0 60px;
  }

  .header-inner { height: 62px; }
  .brand-logo { height: 32px; }
  .brand-name { font-size: 17px; }
  .nav { display: none; }

  /* Hero ----------------------------- */
  .hero-inner { gap: 36px; }
  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
    margin-bottom: 18px;
  }
  .lead {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-actions {
    width: 100%;
    gap: 10px;
  }
  .btn {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
    font-size: 14.5px;
    height: 48px;
  }
  .hero-image img { height: 240px; }

  .blob-1 {
    width: 260px; height: 260px;
    top: -90px; right: -70px;
  }
  .blob-2 {
    width: 200px; height: 200px;
    bottom: -80px;
  }
  .blob-3 { display: none; }

  /* Section heads -------------------- */
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: 28px; line-height: 1.12; }
  .section-lead { font-size: 15.5px; }
  .eyebrow {
    font-size: 11px;
    padding: 5px 11px;
    letter-spacing: 0.12em;
  }

  /* Showcase ------------------------- */
  .showcase { padding: 56px 0 64px; }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .showcase-img-wrap img { aspect-ratio: 1 / 1; }
  .showcase-item figcaption {
    padding: 16px 18px 20px;
    font-size: 14.5px;
  }
  .showcase-tag {
    font-size: 12px;
    padding: 6px 12px;
    top: 14px; left: 14px;
  }

  /* About ---------------------------- */
  .about-inner {
    gap: 36px;
    margin-bottom: 48px;
  }
  .about-image img { height: 220px; }
  .about-text p { font-size: 15.5px; line-height: 1.65; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }
  .feature-icon {
    width: 40px; height: 40px;
    margin-bottom: 14px;
  }
  .feature h3 { font-size: 16px; }
  .feature p { font-size: 14.5px; }

  /* Services ------------------------- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card { padding: 24px 22px; }
  .service-icon {
    width: 46px; height: 46px;
    margin-bottom: 18px;
  }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 14.5px; }

  /* Pricing -------------------------- */
  .price-block { margin-bottom: 22px; }
  .price-table td {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
  }
  .price-heading {
    padding: 13px 16px;
    font-size: 12.5px;
    letter-spacing: 0.06em;
  }
  .price-note {
    font-size: 14px;
    margin-top: 28px;
  }

  /* Interior ------------------------- */
  .interior-grid { gap: 16px; }

  /* Contact -------------------------- */
  .contact-inner { gap: 36px; }
  .contact-list {
    grid-template-columns: 1fr;
    gap: 4px 0;
    margin-top: 28px;
    font-size: 15px;
  }
  .contact-list dt {
    margin-top: 14px;
    font-size: 12px;
  }
  .contact-map {
    min-height: 260px;
  }
  .contact-map iframe { min-height: 260px; }

  /* Footer --------------------------- */
  .site-footer { padding: 40px 0 28px; }
  .footer-brand { font-size: 17px; }
  .footer-logo { height: 30px; }
  .footer-meta { font-size: 14px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .container { padding: 0 16px; }
  .price-table td { padding: 11px 12px; font-size: 13.5px; }
  .price-table td:first-child { padding-right: 8px; }
}
