:root {
  --navy: #10275c;
  --navy-2: #183f86;
  --red: #d7232a;
  --green: #0b9d62;
  --ink: #172033;
  --muted: #667085;
  --line: #dfe5ef;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --soft-blue: #e9f1fb;
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.5;
}

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

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

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 162px;
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 140px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  min-height: auto;
  padding: 8px 0;
  color: var(--navy);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 17px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.header-action {
  color: #fff;
  background: var(--green);
  min-height: 42px;
  padding: 11px 15px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .header-action {
  min-height: 38px;
  padding: 9px 13px;
}

.ifood-action {
  width: 86px;
  background: var(--red);
  padding: 8px 12px;
  transition: width 180ms ease, min-height 180ms ease, padding 180ms ease;
}

.ifood-action img {
  width: 54px;
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .ifood-action {
  width: 78px;
}

.site-header.is-scrolled .ifood-action img {
  width: 50px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.header-action:hover,
.button.primary:hover,
.floating-whatsapp:hover {
  background: #078553;
}

.ifood-action:hover,
.ifood-action:focus-visible {
  background: #b71c22;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button.light {
  color: var(--navy);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-media,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 34%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 44, 0.66);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  width: min(calc(100% - 40px), var(--max));
  min-height: 92svh;
  margin: 0 auto;
  padding: 156px 0 82px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(8, 19, 44, 0.38);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.quick-strip div {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--navy);
  font-size: 1rem;
}

.quick-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section,
.gallery-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 74px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.photo-stack {
  position: relative;
  min-height: 600px;
}

.photo-stack img {
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.photo-main {
  width: min(76%, 510px);
  height: 600px;
}

.photo-overlap {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 44%;
  height: 360px;
  border: 8px solid #fff;
}

.services {
  width: 100%;
  max-width: none;
  padding: 100px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: #fff;
  border-radius: 6px;
  background: var(--navy);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.28rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.highlight-card {
  color: #fff;
  border-color: transparent;
  background: var(--navy);
}

.highlight-card .service-icon {
  color: var(--navy);
  background: #fff;
}

.highlight-card h3,
.highlight-card p {
  color: #fff;
}

.gallery-section {
  padding: 98px 0 110px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.contact-section {
  width: 100%;
  max-width: none;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.contact-copy {
  max-width: 760px;
  margin-bottom: 32px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-card img {
  width: min(100%, 250px);
  height: auto;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-row svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #fff;
  border-radius: 6px;
  background: var(--navy);
}

.contact-row .contact-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--navy);
  flex: 0 0 auto;
}

.contact-row small,
.contact-row strong {
  display: block;
}

.contact-row span {
  min-width: 0;
}

.contact-row small {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-row strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.contact-row:hover strong {
  color: var(--red);
}

.contact-row.muted:hover strong {
  color: var(--navy);
}

.map-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.map-info strong,
.map-info small {
  display: block;
}

.map-info strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.map-info small {
  margin-top: 4px;
  color: var(--muted);
}

.map-info a {
  flex: 0 0 auto;
  padding: 11px 14px;
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius);
  background: var(--navy);
}

.map-info a:hover,
.map-info a:focus-visible {
  background: var(--red);
  outline: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.footer-links,
.footer-social {
  display: flex;
  align-items: center;
}

.footer-links {
  gap: 20px;
}

.footer-social {
  gap: 10px;
}

.social-link {
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
}

.social-link:hover,
.social-link:focus-visible {
  color: rgba(255, 255, 255, 0.72);
  outline: none;
}

.social-link svg {
  width: 28px;
  height: 28px;
}

.ifood-social {
  width: 68px;
}

.ifood-social img {
  width: 62px;
  height: auto;
}

.footer-top {
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
}

.floating-whatsapp img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 10px;
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 122px;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
    align-self: center;
    display: flex;
    flex-wrap: nowrap;
  }

  .whatsapp-action {
    display: none;
  }

  .ifood-action {
    width: 58px;
    min-height: 30px;
    padding: 5px 8px;
  }

  .ifood-action img {
    width: 39px;
  }

  .site-header.is-scrolled {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .site-header.is-scrolled .brand img {
    width: 106px;
  }

  .site-header.is-scrolled .ifood-action {
    width: 52px;
    min-height: 28px;
    padding: 4px 7px;
  }

  .site-header.is-scrolled .ifood-action img {
    width: 35px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 112px;
  }

  .quick-strip,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-strip div:nth-child(2) {
    border-right: 0;
  }

  .quick-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 42px;
  }

  .photo-stack {
    min-height: 520px;
  }

  .photo-main {
    height: 520px;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: 100%;
    margin-top: 0;
    padding: 6px 10px 5px;
  }

  .brand img {
    width: 98px;
  }

  .ifood-action {
    width: 52px;
    min-height: 28px;
    padding: 4px 7px;
  }

  .ifood-action img {
    width: 35px;
  }

  .site-header.is-scrolled .ifood-action {
    width: 48px;
    min-height: 26px;
  }

  .site-header.is-scrolled .ifood-action img {
    width: 32px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    min-height: 94svh;
    padding: 104px 0 54px;
  }

  .hero-shade {
    background: rgba(8, 19, 44, 0.72);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
    margin-top: -24px;
  }

  .quick-strip div {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .gallery-section {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-main {
    width: 100%;
    height: 520px;
  }

  .photo-overlap {
    position: static;
    width: 76%;
    height: 300px;
    margin: -92px 0 0 auto;
  }

  .services,
  .contact-section {
    padding: 74px 14px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .gallery-section {
    padding: 76px 0 80px;
  }

  .gallery-grid {
    grid-auto-rows: 320px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-card {
    padding: 18px;
  }

  .map-card {
    min-height: auto;
  }

  .map-card iframe {
    height: 340px;
  }

  .map-info {
    display: grid;
  }

  .map-info a {
    justify-self: start;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    padding: 26px 14px 88px;
  }

  .footer-links {
    justify-content: space-between;
    gap: 16px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
