:root {
  --navy: #061a31;
  --navy-2: #082642;
  --navy-3: #0d3151;
  --gold: #c8963f;
  --gold-2: #e2b765;
  --cream: #f7f4ef;
  --ink: #142134;
  --muted: #667083;
  --line: rgba(200, 150, 63, .42);
  --shadow: 0 18px 45px rgba(4, 18, 35, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #0e3456 0%, var(--navy) 58%, #020913 100%);
  transition: opacity .55s ease, visibility .55s ease;
  animation: introExit .55s ease 1.25s forwards;
  pointer-events: none;
}
.intro.is-hidden { opacity: 0; visibility: hidden; }
.intro__mark {
  width: min(260px, 68vw);
  display: grid;
  gap: 18px;
  justify-items: center;
}
.intro__mark img {
  width: min(230px, 58vw);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.32));
}
.intro__mark span {
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: pulseLine 1.2s ease infinite;
}
@keyframes pulseLine { 50% { width: 210px; opacity: .55; } }
@keyframes introExit {
  to { opacity: 0; visibility: hidden; }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(22px, 6vw, 92px);
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 17, 32, .92), rgba(4, 17, 32, .42));
  border-bottom: 1px solid rgba(226, 183, 101, .18);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-grid;
  place-items: center;
  width: 132px;
  min-height: 74px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(226, 183, 101, .28);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
}
.brand img {
  width: auto;
  height: 66px;
  max-height: 66px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.site-nav a,
.site-footer a { transition: color .22s ease; }
.site-nav a:hover,
.site-footer a:hover { color: var(--gold-2); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-phone {
  display: grid;
  gap: 1px;
  color: var(--gold-2);
  font-weight: 800;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(226, 183, 101, .45);
  background: rgba(3, 16, 30, .72);
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; }
.btn--outline { background: rgba(3, 16, 30, .38); }
.btn--outline:hover { background: var(--gold); }
.btn--small { min-height: 40px; padding-inline: 18px; }

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 29, .94) 0%, rgba(3, 15, 29, .78) 35%, rgba(3, 15, 29, .18) 70%),
    linear-gradient(0deg, rgba(3, 15, 29, .7), transparent 45%);
}
.hero__content {
  position: relative;
  width: min(690px, calc(100% - 40px));
  margin-left: clamp(24px, 8vw, 130px);
  padding-top: 92px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1,
.about h2,
.valet h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: .98;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 670px;
  font-size: clamp(38px, 4.5vw, 62px);
  overflow-wrap: anywhere;
}
.hero-line {
  display: block;
  color: #fff;
}
.hero-line--gold { color: var(--gold-2); }
.hero-line--mobile { display: none; }
.hero__content > p:not(.eyebrow) {
  max-width: 510px;
  margin: 18px 0 26px;
  font-size: 17px;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  color: inherit;
  font-size: 23px;
  letter-spacing: 0;
}
.section-head::before,
.section-head::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.section-head--left {
  justify-content: flex-start;
  max-width: 1130px;
  margin: 0 auto 8px;
}
.section-head--left::before { display: none; }

.service-strip {
  padding: 22px clamp(18px, 5vw, 76px) 24px;
  background: #fff;
  border-bottom: 1px solid #e6dac9;
}
.service-grid {
  max-width: 1130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(200, 150, 63, .28);
}
.service-grid article {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 12px 14px;
  text-align: center;
  border-right: 1px solid rgba(200, 150, 63, .36);
}
.service-grid article:last-child { border-right: 0; }
.service-grid span { color: var(--navy-2); font-size: 34px; line-height: 1; }
.service-grid h3 {
  margin: 0;
  max-width: 130px;
  font-size: 12px;
  line-height: 1.2;
}

.navy-section {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.projects { padding: 24px clamp(18px, 5vw, 74px) 30px; }
.projects .section-head { color: var(--gold-2); margin-bottom: 18px; }
.project-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.project-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  overflow: hidden;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}
.project-card div {
  min-height: 70px;
  padding: 10px 12px 12px;
  text-align: center;
}
.project-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  color: #fff;
}
.project-card p { margin: 3px 0 0; color: #d7dde7; font-size: 12px; }

.about {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 18px 26px;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}
.about__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about h2 { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.about__copy p:not(.eyebrow) { margin: 0; font-size: 15px; }
.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
}
.about__features span::before { content: "✓ "; color: var(--gold); }
.about__panel {
  min-height: 210px;
  display: grid;
  align-content: center;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 24, 43, .96), rgba(9, 43, 72, .92)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.04) 18px 19px);
  border: 1px solid var(--line);
}
.about__panel h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}
.about__panel p { margin: 0; color: var(--gold-2); font-family: var(--serif); font-style: italic; }

.process {
  padding: 0 18px 32px;
  background: var(--cream);
}
.timeline {
  max-width: 1120px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.timeline article {
  position: relative;
  text-align: center;
}
.timeline article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 16px;
  color: var(--gold);
}
.timeline b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}
.timeline h3 { margin: 10px 0 4px; color: var(--navy); font-size: 13px; }
.timeline p { margin: 0; color: var(--muted); font-size: 12px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px clamp(18px, 8vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats div {
  min-height: 82px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stats div:last-child { border-right: 0; }
.stats strong {
  display: block;
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 38px;
  line-height: 1;
}
.stats span { font-size: 12px; font-weight: 800; }

.valet {
  display: grid;
  grid-template-columns: 1fr 1.15fr .95fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.valet > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.valet__copy {
  padding: clamp(32px, 5vw, 58px);
  display: grid;
  align-content: center;
}
.valet h2 { font-size: 34px; margin-bottom: 15px; }
.valet__copy p:not(.eyebrow) { margin: 0 0 22px; max-width: 560px; color: #e7edf4; }
.valet__copy .btn { width: fit-content; }
.valet__list {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--line);
}
.valet__list p { margin: 0; }
.valet__list strong {
  display: block;
  color: var(--gold-2);
  font-size: 14px;
}
.valet__list span { color: #d8e1ec; font-size: 13px; }

.testimonials {
  padding: 28px 18px 34px;
  background: #fff;
}
.review-grid {
  max-width: 1030px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(200, 150, 63, .38);
  box-shadow: 0 12px 24px rgba(5, 25, 45, .07);
}
.review-grid article::before {
  content: "“";
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
  line-height: .2;
}
.review-grid p { margin: 2px 0 12px; color: #4d5766; font-size: 14px; }
.review-grid strong,
.review-grid span,
.review-grid small { display: block; }
.review-grid small { color: var(--gold); margin-top: 8px; letter-spacing: 2px; }

.contact {
  display: grid;
  grid-template-columns: .9fr 1fr .95fr;
  gap: 26px;
  padding: 36px clamp(18px, 6vw, 94px);
  align-items: center;
}
.contact h2 { font-size: 25px; margin-bottom: 16px; }
.contact__info {
  display: grid;
  gap: 9px;
}
.contact__info p { margin: 0 0 6px; }
.contact__info .btn { width: fit-content; margin-top: 8px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  background: #f7f4ef;
  border: 1px solid var(--line);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc7ba;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}
.contact-form textarea,
.contact-form button { grid-column: 1 / -1; }
.contact-form textarea { min-height: 102px; resize: vertical; }
.contact-form button { border: 0; cursor: pointer; }
.map-card {
  min-height: 210px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    radial-gradient(circle at 30% 40%, #9fc7dc 0 15%, transparent 16%),
    radial-gradient(circle at 75% 35%, #d8c7a2 0 13%, transparent 14%),
    linear-gradient(135deg, #d9e9ef, #f3eee1);
  border: 7px solid rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 1px rgba(200, 150, 63, .42);
}
.map-card div {
  padding: 16px 20px;
  background: rgba(255,255,255,.92);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 28px rgba(5,25,45,.12);
}
.map-card strong,
.map-card span { display: block; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  padding: 34px clamp(18px, 6vw, 94px) 18px;
  color: #d9e1ec;
  background: #041424;
  border-top: 1px solid var(--line);
}
.site-footer img {
  width: 178px;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226, 183, 101, .28);
  margin-bottom: 12px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.28));
}
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 17px;
}
.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
  font-size: 14px;
}
.site-footer p { margin: 0; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 183, 101, .24);
  text-align: center;
  color: #fff;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 12px;
}
.floating-actions a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  width: 88px;
  height: 88px;
  padding: 10px;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0,0,0,.3);
  transition: transform .22s ease, filter .22s ease;
}
.floating-actions a:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}
.floating-actions svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.floating-actions span {
  line-height: 1;
  text-align: center;
}
.float-call { background: #2c80b4; }
.float-whatsapp { background: #108b4b; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }
  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions { display: flex; }
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
    padding-top: 8px;
  }
  .header-actions {
    justify-content: space-between;
    border-top: 1px solid rgba(226, 183, 101, .22);
    padding-top: 10px;
  }
  .project-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid article:nth-child(3) { border-right: 0; }
  .about,
  .valet,
  .contact { grid-template-columns: 1fr; }
  .valet__list { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header {
    width: 100vw;
    max-width: 100vw;
    min-height: 72px;
    padding: 10px 16px;
    gap: 12px;
    grid-template-columns: 1fr auto;
  }
  .brand {
    width: 116px;
    min-height: 58px;
    padding: 4px 10px;
  }
  .brand img { height: 52px; max-height: 52px; }
  .menu-toggle {
    position: fixed;
    top: 16px;
    right: max(16px, calc(100vw - 374px));
    z-index: 80;
    justify-self: end;
    background: rgba(200, 150, 63, .22);
    border-color: var(--gold-2);
  }
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    min-height: 620px;
  }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(3, 15, 29, .94), rgba(3, 15, 29, .64));
  }
  .hero__content {
    width: calc(100vw - 32px);
    max-width: 358px;
    margin-inline: 16px;
    padding-top: 128px;
    overflow: hidden;
  }
  .eyebrow {
    font-size: 11px;
    line-height: 1.35;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
    word-break: break-word;
  }
  .hero-line--desktop { display: none; }
  .hero-line--mobile { display: block; }
  .hero__content > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 320px;
    overflow-wrap: anywhere;
  }
  .hero__buttons .btn { width: 100%; }
  .service-grid,
  .project-grid,
  .timeline,
  .stats,
  .review-grid,
  .site-footer { grid-template-columns: 1fr; }
  .project-grid,
  .review-grid {
    width: min(100% - 48px, 350px);
  }
  .service-grid article,
  .stats div { border-right: 0; border-bottom: 1px solid rgba(200, 150, 63, .28); }
  .timeline article:not(:last-child)::after { display: none; }
  .about { gap: 18px; }
  .about__image img { height: 210px; }
  .about__features { display: grid; }
  .contact-form { grid-template-columns: 1fr; }
  .floating-actions {
    left: auto;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    grid-template-columns: repeat(2, 76px);
  }
  .floating-actions a {
    width: 76px;
    height: 76px;
    font-size: 13px;
  }
  .floating-actions svg {
    width: 29px;
    height: 29px;
  }
  .site-footer { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
