*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sea: #0b3d4a;
  --tide: #14697a;
  --coral: #e26d5c;
  --sun: #f4c95f;
  --foam: #f7f1e8;
  --ink: #1a2428;
  --muted: #5c6b70;
  --line: rgba(11, 61, 74, 0.12);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.55;
}

h1, h2, h3, .brand-word, .foot-name, .phones a {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.top-legal {
  background: var(--sea);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 0;
  text-align: center;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-word {
  font-size: 1.45rem;
  color: var(--sea);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.nav-row nav {
  display: flex;
  gap: 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-row nav a:hover { color: var(--tide); }

.pill-call {
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.splash {
  position: relative;
  min-height: min(82vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0b3d4a 0%, #125966 50%, #1a7a84 100%);
  color: var(--white);
}

.splash-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 201, 95, 0.35), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(226, 109, 92, 0.28), transparent 45%);
  animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.85; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

.splash-copy {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  animation: up 0.8s ease both;
}

@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.place-tag {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 1rem;
}

.splash h1 {
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 1.2rem;
}

.splash h1 span {
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
}

.lede {
  max-width: 32rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.8rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.solid {
  background: var(--sun);
  color: var(--sea);
}

.btn.line {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.block { padding: 4.8rem 0; }

.block-head {
  margin-bottom: 2rem;
  max-width: 28rem;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.55rem;
}

.block-head h2,
.split-text h2,
.contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  color: var(--sea);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  min-height: 150px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 61, 74, 0.08);
}

.tile-lg {
  grid-row: span 2;
  background: var(--sea);
  color: var(--white);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}

.tile-wide { grid-column: span 2; }

.tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.tile p {
  color: var(--muted);
  font-size: 0.98rem;
}

.tile-lg p { color: rgba(255, 255, 255, 0.78); }

.strip {
  background: var(--coral);
  color: var(--white);
  padding: 1.6rem 0;
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.strip strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.strip span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.split-text p {
  color: var(--muted);
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.dossier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  border-top: 4px solid var(--sun);
}

.dossier h3 {
  color: var(--sea);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.dossier dl {
  display: grid;
  gap: 0.85rem;
}

.dossier dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.15rem;
}

.dossier dd { font-size: 0.98rem; }

.contact {
  background:
    linear-gradient(180deg, rgba(20, 105, 122, 0.08), transparent),
    var(--foam);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1rem 0 0.8rem;
}

.phones a {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--sea);
  font-weight: 700;
}

.mail {
  display: inline-block;
  color: var(--tide);
  font-weight: 700;
  margin-bottom: 1rem;
  word-break: break-all;
}

.addr {
  color: var(--muted);
  line-height: 1.7;
}

.map-card {
  background: var(--sea);
  color: var(--white);
  border-radius: 22px;
  padding: 1.8rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.map-card h3 {
  color: var(--sun);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.chip {
  margin-top: auto;
  align-self: flex-start;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.foot {
  background: #082c36;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.4rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-name {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.foot h4 {
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 0.55rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .nav-row nav,
  .pill-call { display: none; }

  .mosaic,
  .strip-row,
  .split,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .tile-lg,
  .tile-wide {
    grid-row: auto;
    grid-column: auto;
    min-height: auto;
  }
}
