:root {
  --ink: #162230;
  --muted: #526274;
  --blue: #2866a8;
  --blue-dark: #164572;
  --blue-light: #e8f3ff;
  --whatsapp: #0f766e;
  --whatsapp-dark: #0a554f;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --line: #dce6ef;
  --shadow: 0 24px 70px rgba(22, 69, 114, 0.14);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 230, 239, 0.85);
  background: rgba(251, 248, 241, 0.93);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 146px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}

nav .nav-cta:hover,
nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--blue-dark);
}

main {
  overflow: hidden;
}

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

.hero {
  min-height: 690px;
  padding: 76px 0 86px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-text,
.section-heading > p:last-child,
.story-copy > p,
.visit-intro > p {
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-text {
  max-width: 630px;
}

.hero-actions,
.visit-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue-dark);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-light);
}

.button-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
}

.quiet-note {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-photo {
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 8% -16% -9% 13%;
  z-index: -1;
  background: var(--blue-light);
  border-radius: 48% 52% 42% 58%;
  transform: rotate(-7deg);
}

.hero-photo img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%;
  box-shadow: var(--shadow);
}

.photo-tag {
  position: absolute;
  right: -18px;
  bottom: 34px;
  padding: 12px 18px;
  color: var(--blue-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(22, 69, 114, 0.18);
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  padding: 104px 0;
}

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

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

.service-card {
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(22, 69, 114, 0.08);
}

.service-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.story {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.story-gallery img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 18px;
}

.story-gallery .gallery-tall {
  height: 502px;
  grid-row: 1 / span 2;
}

.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-row span {
  padding: 7px 12px;
  color: var(--blue-dark);
  background: var(--blue-light);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.visit {
  margin-bottom: 100px;
  padding: 66px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.visit .eyebrow,
.visit-intro > p {
  color: #c6e1ff;
}

.visit .button-primary {
  color: var(--blue-dark);
  background: #fff;
  border-color: #fff;
}

.visit .button-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  border-color: #7bd9cf;
}

.visit .button-whatsapp:hover,
.visit .button-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
}

.visit .button-secondary {
  color: #fff;
  border-color: #92bce6;
}

.visit .button-secondary:hover,
.visit .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.contact-note {
  margin: 18px 0 0;
  color: #d8eaff;
  font-size: 0.92rem;
}

.details-card {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-md);
}

.details-card > div + div {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

address {
  color: var(--muted);
  font-style: normal;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-list div + div {
  margin-top: 7px;
}

.hours-list dt {
  font-weight: 700;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

footer {
  padding: 54px max(20px, calc((100% - 1180px) / 2));
  color: #d7e4ef;
  background: #101c28;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-main img {
  width: 105px;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
}

.footer-main strong {
  color: #fff;
  font-size: 1.12rem;
}

.footer-main p {
  margin: 2px 0 0;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
}

.acknowledgement {
  max-width: 850px;
  margin: 36px 0 0;
  font-size: 0.88rem;
}

.copyright {
  margin: 28px 0 0;
  color: #9fb1c0;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero,
  .story,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
    gap: 50px;
  }

  .hero-photo {
    max-width: 650px;
  }

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

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

  .service-number {
    margin-bottom: 22px;
  }

  .visit {
    padding: 44px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 115px;
  }

  nav {
    gap: 12px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

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

  .hero,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero-photo img {
    min-height: 410px;
  }

  .photo-tag {
    right: 8px;
  }

  .section {
    padding: 72px 0;
  }

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

  .story-gallery .gallery-tall {
    height: 420px;
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .story-gallery img {
    height: 210px;
  }

  .visit {
    width: calc(100% - 28px);
    margin-bottom: 60px;
    padding: 30px 22px;
  }

  .hours-list div {
    display: block;
  }

  .hours-list dd {
    text-align: left;
  }

  .footer-main {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-links {
    width: 100%;
    margin-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
