:root {
  --navy: #0B1F33;
  --charcoal: #151A20;
  --gold: #C9A45C;
  --gold-soft: rgba(201, 164, 92, 0.12);
  --offwhite: #F7F5F0;
  --white: #ffffff;
  --text: #233141;
  --muted: #5c6572;
  --border: rgba(11, 31, 51, 0.1);
  --shadow: 0 20px 45px rgba(11, 31, 51, 0.12);
  --max-width: 1200px;
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.05);
  transition: all 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(11, 31, 51, 0.06);
  background: rgba(255, 255, 255, 0.94);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.site-header.scrolled .navbar {
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.logo-image {
  display: block;
  width: min(220px, 42vw);
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-link {
  display: inline-flex;
  width: 128px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  padding: 7px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fff;
}

.footer-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text-fallback {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.88rem;
}

.logo span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d8b36a);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(201, 164, 92, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(201, 164, 92, 0.35);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-toggle.active span { opacity: 0; }
.nav-toggle.active::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 999;
  display: none;
  gap: 10px;
}

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.mobile-cta .mini-cta {
  background: var(--navy);
  color: white;
}

.mobile-cta .whatsapp-cta {
  background: #25D366;
  color: white;
}

.hero {
  position: relative;
  min-height: 760px;
  background-image: linear-gradient(90deg, rgba(11, 31, 51, 0.82), rgba(11, 31, 51, 0.45)), var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background-image 0.8s ease, transform 0.8s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 51, 0.18), rgba(201, 164, 92, 0.08));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding: 120px 0 80px;
}

.hero-copy {
  color: var(--white);
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d7dce1;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--navy);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.96;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.button,
.button-secondary,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.button {
  background: linear-gradient(135deg, var(--gold), #d9b56a);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(201, 164, 92, 0.28);
}

.button:hover,
.button-secondary:hover,
.button-outline:hover {
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.button-outline {
  background: transparent;
  border-color: rgba(11, 31, 51, 0.15);
  color: var(--navy);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px,1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat-card {
  padding: 1.1rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  color: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 92, 0.5);
}

.stat-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.stat-card span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-visual-frame {
  position: relative;
  width: min(100%, 470px);
  min-height: 590px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 50px rgba(11, 31, 51, 0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  perspective: 1400px;
  animation: floatCard 6s ease-in-out infinite;
}

.building-scene {
  --scroll-progress: 0;
  position: absolute;
  inset: 8% 8% 8% 8%;
  transform-style: preserve-3d;
  transform: rotateX(17deg) rotateY(-16deg) translate3d(0, calc(var(--scroll-progress) * -32px), 0) scale(calc(1 + (var(--scroll-progress) * 0.12)));
  transition: transform 0.18s ease-out;
}

.building-layer {
  position: absolute;
  inset: 9% 12% 10% 12%;
  border-radius: 20px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(11,31,51,0.4)), var(--layer-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 45px rgba(11,31,51,0.16);
  border: 1px solid rgba(255,255,255,0.16);
  transform: translate3d(var(--layer-shift), 0, var(--layer-depth));
}

.building-layer::before,
.building-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.building-layer::before {
  background: linear-gradient(90deg, rgba(11,31,51,0.76) 0%, rgba(11,31,51,0.12) 36%, rgba(255,255,255,0.08) 100%);
}

.building-layer::after {
  inset: auto 8% 8% 8%;
  height: 20%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(11,31,51,0.35));
  border-radius: 14px;
  box-shadow: 0 -10px 20px rgba(255,255,255,0.04);
}

.layer-back { filter: brightness(0.78) saturate(0.7); }
.layer-mid { inset: 4% 17% 12% 17%; }
.layer-front { inset: 0% 24% 18% 24%; }

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.floating-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.5rem 0.9rem;
  background: rgba(11, 31, 51, 0.74);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(88%, 290px);
  padding: 18px 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px rgba(11, 31, 51, 0.18);
}

.floating-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.floating-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.floating-card p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.floating-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
}

.floating-meta a {
  color: var(--gold);
  font-weight: 700;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 680px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--navy);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(11, 31, 51, 0.12);
}

.project-card .project-image {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-card .project-content {
  padding: 28px 26px 26px;
}

.project-card h3 {
  font-size: 2rem;
  color: var(--navy);
}

.project-card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.project-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.project-meta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, #fff, #f6f2ea);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 35px rgba(11, 31, 51, 0.04);
}

.feature-card .icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-soft);
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.about-section {
  background: linear-gradient(180deg, #f8f6f2, #fff);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 24px;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: 590px;
  width: 100%;
  object-fit: cover;
}

.mini-panel {
  position: absolute;
  bottom: 26px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 31, 51, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(11,31,51,0.1);
  padding: 18px 20px;
  max-width: 260px;
}

.mini-panel strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.mini-panel span {
  color: var(--muted);
}

.objectives {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.objective {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
}

.objective h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.objective p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 120px 0 70px;
  background: linear-gradient(180deg, #f7f5f0, #fff);
}

.page-hero .content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: var(--navy);
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.project-detail-header {
  padding: 120px 0 48px;
  background: linear-gradient(180deg, #f7f5f0, #fff);
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.detail-hero-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.detail-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--navy);
}

.detail-hero-copy h2 {
  font-size: 1.55rem;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}

.detail-location {
  color: var(--muted);
  margin-bottom: 24px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: 0 16px 28px rgba(11,31,51,0.04);
}

.info-card h3 {
  font-size: 2rem;
  color: var(--navy);
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul {
  padding-left: 18px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 24px;
}

.spec-item {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}

.spec-item label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spec-item strong {
  color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
}

.map-box {
  background: linear-gradient(180deg, #f7f3ec, #f0eee8);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(11, 31, 51, 0.06);
  min-height: 360px;
  background-image: linear-gradient(rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.04)),
    radial-gradient(circle at center, rgba(20, 64, 92, 0.12), rgba(20, 64, 92, 0));
}

.map-box iframe {
  width: 100%;
  min-height: 360px;
  height: 360px;
  border: 0;
  display: block;
  background: #eef1f4;
}

.location-map-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(11, 31, 51, 0.05);
}

.location-map-panel .map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
}

.location-map-panel .map-header h3 {
  margin: 0;
  font-size: 1.8rem;
}

.location-map-panel .map-header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(11,31,51,0.12);
  background: #fff;
  border-radius: 14px;
  min-height: 52px;
  padding: 0.9rem 1rem;
  color: var(--navy);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(201, 164, 92, 0.8);
  box-shadow: 0 0 0 4px rgba(201,164,92,0.12);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #d34545;
  box-shadow: 0 0 0 4px rgba(211, 69, 69, 0.08);
}

.form-status {
  margin-top: 18px;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  color: #1f7d4d;
}

.form-status.error {
  display: block;
  color: #b42020;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(11,31,51,0.04);
}

.location-card h3 {
  font-size: 1.9rem;
  color: var(--navy);
}

.location-card p {
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), #1a2d42);
  color: var(--white);
  border-radius: 26px;
  padding: 38px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h3 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0;
}

.footer {
  background: #0b1015;
  color: rgba(255,255,255,0.8);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 26px;
}

.footer-brand .logo {
  color: var(--white);
}

.footer-brand .footer-logo-link {
  color: var(--navy);
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,0.72);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px;
  padding-top: 22px;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 28px rgba(11,31,51,0.04);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 700;
}

.legal-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(11,31,51,0.04);
  padding: 34px 30px;
}

.legal-box h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.legal-box p,
.legal-box li {
  color: var(--muted);
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

[hidden] { display: none !important; }

@media (max-width: 1024px) {
  .hero-inner,
  .about-layout,
  .detail-hero,
  .content-grid,
  .contact-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(11,31,51,0.08);
    display: none;
    padding: 18px 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .navbar .header-cta {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 620px;
  }

  .hero-stats,
  .form-grid,
  .gallery-grid,
  .spec-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .project-card .project-image {
    height: 280px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--max-width), calc(100% - 22px));
  }

  .logo {
    max-width: 48vw;
  }

  .logo-image {
    width: min(190px, 46vw);
    height: 32px;
  }

  .hero p,
  .page-hero p,
  .detail-hero-copy h2,
  .project-card p,
  .feature-card p,
  .about-content p,
  .contact-item p,
  .legal-box p,
  .info-card p {
    font-size: 0.98rem;
  }

  .button,
  .button-secondary,
  .button-outline,
  .header-cta {
    width: 100%;
  }

  .hero-actions,
  .detail-actions,
  .project-meta-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }
}
