:root {
  --primary: #082b59;
  --primary-dark: #041c3c;
  --accent: #c8a96a;
  --beige: #f5efe6;
  --soft: #f7f8fa;
  --white: #ffffff;
  --ink: #162033;
  --muted: #697386;
  --border: rgba(8, 43, 89, 0.12);
  --shadow: 0 24px 70px rgba(8, 43, 89, 0.12);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.navbar {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 16px 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo-wrap {
  align-items: center;
  display: inline-flex;
  gap: 20px;
}

.brand-logo-mark {
  display: block;
  height: 80px;
  object-fit: contain;
  width: 80px;
}

.brand-logo-text {
  display: block;
  height: 100px;
  max-width: 250px;
  object-fit: contain;
  width: auto;
}

.brand-logo-single {
  display: block;
  height: 70px;
  max-width: 350px;
  object-fit: contain;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: var(--primary);
  border-radius: 14px;
  color: var(--white);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-text {
  color: var(--primary);
  font-size: 1.02rem;
  white-space: nowrap;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a {
  color: #27354d;
  transition: color 0.25s ease;
}

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

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--primary);
  cursor: pointer;
  display: none;
  font-size: 1.35rem;
}

.nav-cta,
.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
}

.btn {
  border: 0;
  cursor: pointer;
  min-height: 52px;
  padding: 14px 24px;
}

.btn:hover,
.nav-cta:hover {
  box-shadow: 0 16px 35px rgba(8, 43, 89, 0.22);
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.section {
  padding: 110px 0;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.hero {
  align-items: center;
  background: linear-gradient(rgba(4, 28, 60, 0.55), rgba(4, 28, 60, 0.38)), url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: var(--white);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 170px 24px 80px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.9), transparent);
  bottom: 0;
  content: "";
  height: 120px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.cta-band h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  max-width: 840px;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  margin: 24px 0 34px;
  max-width: 680px;
  opacity: 0.94;
}

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

.hero-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  bottom: 70px;
  box-shadow: var(--shadow);
  max-width: 340px;
  padding: 24px;
  position: absolute;
  right: 7%;
  z-index: 1;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 8px;
  opacity: 0.88;
}

.page-hero {
  align-items: center;
  background: linear-gradient(rgba(4, 28, 60, 0.68), rgba(4, 28, 60, 0.46)), var(--page-image) center/cover;
  color: var(--white);
  display: flex;
  min-height: 560px;
  padding: 170px 0 90px;
}

.page-hero-content {
  max-width: 820px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.page-hero p {
  font-size: 1.18rem;
  margin-top: 24px;
  max-width: 720px;
  opacity: 0.92;
}

.page-intro {
  background: var(--beige);
}

.content-card,
.project-card,
.detail-card,
.value-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-card {
  padding: 34px;
}

.content-card h3,
.detail-card h3,
.value-card h3,
.project-card h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.content-card p,
.detail-card p,
.value-card p,
.project-card p,
.timeline-card p {
  color: var(--muted);
}

.image-card img,
.project-card img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}

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

.detail-card,
.value-card {
  padding: 30px;
}

.detail-card i,
.value-card i {
  align-items: center;
  background: rgba(8, 43, 89, 0.08);
  border-radius: 16px;
  color: var(--primary);
  display: inline-flex;
  font-size: 1.35rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 20px;
  width: 54px;
}

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

.project-card img {
  height: 360px;
}

.project-card div {
  padding: 26px;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-card {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: 90px 1fr;
  padding: 30px;
}

.timeline-card span {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.timeline-card h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.grid-2 {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-heading {
  margin: 0 auto 54px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.section-copy h2 {
  color: var(--primary-dark);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-copy p,
.section-heading p {
  color: var(--muted);
  margin-top: 22px;
}

.about,
.before-after,
.testimonials {
  background: var(--beige);
}

.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.stats div,
.service-card,
.process-step,
.testimonial,
.contact-form,
.contact-info,
.ba-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats div {
  padding: 22px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--primary);
  font-size: 1.45rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.image-stack,
.why-image {
  position: relative;
}

.image-stack img,
.why-image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  height: 560px;
  object-fit: cover;
  width: 100%;
}

.glass-note {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  bottom: 28px;
  box-shadow: var(--shadow);
  color: var(--primary);
  display: flex;
  font-weight: 800;
  gap: 12px;
  left: -30px;
  max-width: 330px;
  padding: 18px;
  position: absolute;
}

.services,
.process,
.contact {
  background: var(--soft);
}

.card-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

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

.service-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 30px 80px rgba(8, 43, 89, 0.18);
  transform: translateY(-8px);
}

.service-card i,
.feature-list i {
  align-items: center;
  background: rgba(8, 43, 89, 0.08);
  border-radius: 16px;
  color: var(--primary);
  display: inline-flex;
  font-size: 1.3rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}

.service-card h3,
.process-step h3 {
  color: var(--primary-dark);
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.service-card p,
.process-step p,
.testimonial p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.feature-list div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  font-weight: 800;
  gap: 14px;
  padding: 16px;
}

.feature-list i {
  flex: 0 0 48px;
  height: 48px;
  margin: 0;
  width: 48px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 70px 0;
}

.cta-content {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-content p {
  max-width: 470px;
  opacity: 0.86;
}

.gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.gallery-grid img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: 310px;
  object-fit: cover;
  width: 100%;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 642px;
}

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

.ba-card {
  overflow: hidden;
  position: relative;
}

.ba-card span {
  background: var(--primary);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  left: 22px;
  padding: 8px 18px;
  position: absolute;
  top: 22px;
  z-index: 1;
}

.ba-card img {
  height: 390px;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.ba-card:hover img {
  transform: scale(1.05);
}

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

.process-step {
  padding: 30px;
}

.process-step span {
  color: var(--accent);
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
}

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

.testimonial {
  padding: 32px;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--primary-dark);
  margin-top: 22px;
}

.testimonial span {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-info,
.contact-form {
  padding: 36px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a,
.contact-list div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--primary-dark);
  display: flex;
  gap: 14px;
  padding: 16px;
}

.contact-list i {
  color: var(--primary);
  font-size: 1.15rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  transition: border 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8, 43, 89, 0.08);
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.form-status {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.success {
  color: #177245;
}

.form-status.error {
  color: #b42318;
}

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 72px;
}

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

.footer .brand-text,
.footer h3 {
  color: var(--white);
}

.footer .brand-logo-mark {
  background: var(--white);
  border-radius: 14px;
  padding: 6px;
}

.footer .brand-logo-text {
  background: var(--white);
  border-radius: 10px;
  padding: 6px 8px;
}

.footer .brand-logo-single {
  background: var(--white);
  border-radius: 14px;
  padding: 8px 10px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
  max-width: 420px;
}

.footer a:not(.brand) {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  margin-top: 10px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex !important;
  height: 42px;
  justify-content: center;
  margin-top: 0 !important;
  width: 42px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  margin-top: 54px;
  padding: 24px;
  text-align: center;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.38);
  color: var(--white);
  display: flex;
  font-size: 2rem;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform 0.25s ease;
  width: 62px;
  z-index: 1001;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu.active {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    top: 77px;
  }

  .grid-2,
  .footer-grid,
  .detail-grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .stats,
  .services-grid,
  .feature-list,
  .gallery-grid,
  .ba-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child,
  .image-stack img,
  .why-image img,
  .ba-card img,
  .project-card img,
  .image-card img {
    height: 360px;
  }

  .page-hero {
    min-height: 500px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .glass-note {
    left: 16px;
    right: 16px;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .brand-logo-wrap {
    gap: 8px;
  }

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

  .brand-logo-text {
    height: 34px;
    max-width: 190px;
  }

  .brand-logo-single {
    height: 46px;
    max-width: 210px;
  }

  .contact-info,
  .contact-form {
    padding: 26px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}
