:root {
  --navy: #082f4b;
  --navy-2: #0b466a;
  --blue: #0b6e9f;
  --blue-2: #2798c3;
  --cyan: #78cbe4;
  --ice: #eaf8fc;
  --ice-2: #f5fcfe;
  --white: #ffffff;
  --ink: #0c2b3c;
  --muted: #537487;
  --line: rgba(11, 90, 132, .14);
  --shadow: 0 26px 70px rgba(6, 55, 85, .14);
  --shadow-soft: 0 16px 40px rgba(6, 55, 85, .09);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ice-2);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 13px 0;
  background: rgba(245, 252, 254, .84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(6, 55, 85, .08);
}
.nav-wrap {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  width: 124px;
  height: 58px;
  display: block;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(7, 61, 94, .12);
}
.brand img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.menu { display: flex; align-items: center; gap: 24px; }
.menu a { font-size: .88rem; font-weight: 700; color: #3d6479; transition: color .2s ease, transform .2s ease; }
.menu a:hover { color: var(--blue); transform: translateY(-1px); }
.menu .menu-instagram {
  padding: 10px 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(9, 91, 136, .19);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 780px;
  padding: 142px 0 90px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(236, 249, 253, .98) 0%, rgba(226, 246, 252, .9) 48%, rgba(201, 235, 247, .86) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 110, 159, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 110, 159, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { width: 430px; height: 430px; right: -110px; top: 90px; background: rgba(55, 171, 211, .18); }
.hero-glow-two { width: 260px; height: 260px; left: -100px; bottom: 20px; background: rgba(121, 207, 232, .18); }
.hero-wrap {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}
.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.kicker.dark { color: var(--navy-2); }
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(4.2rem, 9vw, 8.3rem);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 820;
}
.hero-line {
  max-width: 660px;
  margin: 32px 0 0;
  color: #355f76;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 620;
}
.hero-line span { margin: 0 .4em; color: var(--blue-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--navy-2), var(--blue)); box-shadow: 0 15px 30px rgba(10, 93, 138, .2); }
.button-secondary { color: var(--navy); border: 1px solid rgba(10, 93, 138, .18); background: rgba(255,255,255,.68); }
.hero-schedule { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: #4e7488; font-size: .87rem; }
.hero-schedule p { margin: 0; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 0 6px rgba(39, 152, 195, .12); }

.hero-visual { position: relative; width: min(100%, 520px); justify-self: end; }
.logo-card {
  position: relative;
  padding: 14px;
  border-radius: 40px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 35px 90px rgba(7, 60, 92, .18);
  transform: rotate(2deg);
}
.logo-card::after {
  content: "";
  position: absolute;
  inset: -17px;
  z-index: -1;
  border: 1px solid rgba(11, 110, 159, .12);
  border-radius: 48px;
}
.logo-card img { width: 100%; aspect-ratio: 1.06 / 1; object-fit: cover; border-radius: 28px; }
.hero-tag {
  position: absolute;
  right: -18px;
  bottom: 32px;
  padding: 12px 17px;
  color: var(--white);
  background: rgba(8, 47, 75, .92);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.section { padding: 105px 0; }
.section-wrap { width: var(--wrap); margin: 0 auto; }
.section-heading { max-width: 720px; margin-bottom: 45px; }
.section-heading h2,
.gallery-head h2,
.schedule-copy h2,
.contact-copy h2,
.signature h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f8fdff, #edf8fc);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-featured { background: linear-gradient(145deg, var(--navy-2), var(--blue)); border-color: transparent; color: var(--white); }
.service-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -85px;
  top: -75px;
  border-radius: 50%;
  background: rgba(87, 192, 226, .14);
}
.service-number { position: absolute; top: 25px; left: 28px; font-size: .74rem; font-weight: 900; letter-spacing: .15em; color: #7295a8; }
.service-card-featured .service-number { color: rgba(255,255,255,.64); }
.service-icon {
  width: 63px;
  height: 63px;
  margin-bottom: 36px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--blue);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11, 110, 159, .10);
}
.service-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; z-index: 1; margin: 0; font-size: clamp(1.45rem, 2.3vw, 2.05rem); line-height: 1.12; letter-spacing: -.035em; }

.signature {
  padding: 70px 0;
  color: var(--white);
  background: radial-gradient(circle at 80% 20%, #2588b2 0, transparent 36%), linear-gradient(135deg, #073551, #0b648f 64%, #0f7da8);
  overflow: hidden;
}
.signature-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 42px;
  align-items: center;
}
.signature img { width: 175px; aspect-ratio: 1.06 / 1; object-fit: cover; border-radius: 25px; box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.signature-small { margin: 0 0 6px; font-size: .72rem; font-weight: 850; letter-spacing: .22em; opacity: .65; }
.signature h2 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 4.7rem); }
.signature p:last-child { margin: 13px 0 0; color: rgba(255,255,255,.78); }

.gallery { background: #eff9fc; }
.gallery-head { margin-bottom: 38px; display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.gallery-head p:last-child { margin: 0 0 6px; color: var(--muted); font-weight: 650; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .85fr; gap: 18px; }
.gallery-card {
  position: relative;
  min-height: 535px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #dbeef5;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5, 43, 68, .34), transparent 38%); pointer-events: none; }
.gallery-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(6, 49, 76, .72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
}

.schedule { color: var(--white); background: linear-gradient(135deg, #073653, #0a5b84 58%, #0c78a3); }
.schedule-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.schedule-copy h2 { color: var(--white); }
.schedule-copy > p:last-child { margin: 18px 0 0; color: rgba(255,255,255,.7); }
.schedule .kicker { color: #9eddf0; }
.schedule-card {
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 26px;
  background: rgba(255,255,255,.09);
  box-shadow: 0 25px 60px rgba(0,0,0,.10);
  backdrop-filter: blur(14px);
}
.schedule-row { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.schedule-row span { color: rgba(255,255,255,.65); }
.schedule-row strong { text-align: right; font-size: 1.05rem; }
.schedule-divider { height: 1px; background: rgba(255,255,255,.12); }

.contact { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy p:last-child { max-width: 500px; margin: 22px 0 0; color: var(--muted); }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  position: relative;
  min-height: 112px;
  padding: 22px 58px 22px 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7fcfe;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card-instagram { color: var(--white); background: linear-gradient(135deg, var(--navy-2), var(--blue)); border-color: transparent; }
.contact-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); border-radius: 17px; background: var(--white); }
.contact-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon .fill-dot { fill: currentColor; stroke: none; }
.contact-card span { display: block; margin-bottom: 2px; color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card-instagram span { color: rgba(255,255,255,.6); }
.contact-card strong { font-size: clamp(1rem, 1.8vw, 1.3rem); line-height: 1.25; }
.contact-card b { position: absolute; right: 23px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; }

.site-footer { padding: 44px 0; color: rgba(255,255,255,.72); background: #062b44; }
.footer-wrap { width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 115px 1fr auto; gap: 34px; align-items: center; }
.footer-logo { width: 105px; height: 74px; overflow: hidden; border-radius: 14px; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.footer-data { display: grid; gap: 3px; font-size: .84rem; }
.footer-data strong { margin-bottom: 2px; color: var(--white); }
.footer-data a:hover, .footer-instagram:hover { color: var(--white); }
.footer-instagram { font-size: .85rem; font-weight: 800; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(2, 28, 45, .93);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox img { max-width: min(1180px, 94vw); max-height: 86vh; border-radius: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  :root { --wrap: min(100% - 30px, 760px); }
  .menu-toggle { display: flex; }
  .menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 15px;
    right: 15px;
    padding: 13px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(248, 253, 255, .98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }
  .menu.open { opacity: 1; visibility: visible; transform: none; }
  .menu a { padding: 12px 13px; border-radius: 12px; }
  .menu .menu-instagram { text-align: center; }
  .hero { min-height: auto; padding: 125px 0 75px; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; width: min(100%, 600px); }
  .logo-card { transform: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .signature-inner { grid-template-columns: 135px 1fr; }
  .signature img { width: 135px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { min-height: 470px; }
  .schedule-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .footer-wrap { grid-template-columns: 100px 1fr; }
  .footer-instagram { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 24px); }
  .site-header { padding: 8px 0; }
  .brand { width: 102px; height: 48px; border-radius: 12px; }
  .hero { padding: 108px 0 58px; }
  .hero h1 { font-size: clamp(3.5rem, 20vw, 5.9rem); }
  .hero-line { margin-top: 24px; line-height: 1.8; }
  .hero-line span { margin: 0 .2em; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-schedule { align-items: flex-start; }
  .logo-card { padding: 10px; border-radius: 28px; }
  .logo-card img { border-radius: 20px; }
  .hero-tag { position: static; margin-top: 12px; display: inline-block; font-size: .58rem; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 28px; }
  .service-card { min-height: 230px; padding: 24px; }
  .signature { padding: 65px 0; }
  .signature-inner { grid-template-columns: 1fr; gap: 24px; }
  .signature img { width: 120px; }
  .gallery-head { display: grid; gap: 14px; }
  .gallery-card { min-height: 330px; border-radius: 22px; }
  .schedule-card { padding: 8px 20px; }
  .schedule-row { display: grid; gap: 7px; }
  .schedule-row strong { text-align: left; }
  .contact-card { grid-template-columns: 48px 1fr; padding: 18px 50px 18px 16px; }
  .contact-icon { width: 48px; height: 48px; border-radius: 15px; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-logo { width: 105px; }
  .footer-instagram { grid-column: auto; }
  .lightbox { padding: 15px; }
}

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