:root {
  --ink: #18383d;
  --ink-soft: #52696d;
  --primary: #214f55;
  --primary-dark: #163b40;
  --accent: #c7a46a;
  --soft: #e7f0ef;
  --cream: #f7f5ef;
  --white: #ffffff;
  --line: rgba(24, 56, 61, 0.14);
  --shadow: 0 24px 70px rgba(24, 56, 61, 0.15);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--primary-dark);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 239, 0.96);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(24, 56, 61, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.96rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
}

.nav-button {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(33, 79, 85, 0.2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  padding: 72px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(231, 240, 239, 0.95), transparent 28%),
    linear-gradient(135deg, #fbfaf6, #f1f4f0);
}

.decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decor-one {
  width: 380px;
  height: 380px;
  top: -210px;
  left: -120px;
  background: rgba(33, 79, 85, 0.07);
}

.decor-two {
  width: 170px;
  height: 170px;
  right: -65px;
  bottom: 60px;
  border: 32px solid rgba(199, 164, 106, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 82px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #cce3e2;
}

.hero h1,
.section-heading h2,
.service-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(33, 79, 85, 0.22);
}

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

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button-light {
  color: var(--primary-dark);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 49, 53, 0.2);
}

.quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.quick-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-image-card {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(33, 79, 85, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-location {
  position: absolute;
  right: -24px;
  bottom: 34px;
  max-width: calc(100% - 30px);
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(24, 56, 61, 0.15);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: 105px 0;
}

.light-section,
.media-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.service-intro h2,
.contact-card h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
}

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

.info-card {
  min-height: 240px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--white), #f6faf8);
  box-shadow: 0 16px 42px rgba(24, 56, 61, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(24, 56, 61, 0.13);
}

.card-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.info-card h3,
.service-item h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-dark);
}

.dark-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -210px;
  bottom: -280px;
  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 82px;
}

.service-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #d8ecea;
  font-weight: 800;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.service-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.09);
}

.service-item > span {
  color: #a9cfcc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.audience-section {
  background: var(--soft);
}

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

.audience-card {
  position: relative;
  min-height: 175px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(33, 79, 85, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.audience-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -34px;
  right: -24px;
  border: 18px solid rgba(33, 79, 85, 0.07);
  border-radius: 50%;
}

.audience-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.video-panel {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.video-panel video {
  width: 100%;
  height: 100%;
  max-height: 620px;
  border-radius: 18px;
  object-fit: contain;
  background: var(--white);
}

.video-panel video {
  aspect-ratio: 1 / 1;
  background: #10282b;
}

.video-panel-single {
  width: min(100%, 760px);
  margin-inline: auto;
}

.contact-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 46px;
  padding: 54px;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 30px 70px rgba(22, 59, 64, 0.24);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -100px;
  bottom: -150px;
  border: 42px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.phone {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}

.social-section {
  padding: 30px 0 68px;
}

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

.social-content h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-tags span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #102f33;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-content strong {
  color: var(--white);
}

.footer-content p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--cream);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(11, 47, 29, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .nav-button {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-grid {
    gap: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .quick-list {
    justify-content: center;
  }

  .hero-image-card {
    width: min(100%, 560px);
  }

  .service-grid {
    gap: 50px;
  }

  .service-intro {
    position: static;
    text-align: center;
  }

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

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

  .card-number {
    margin-bottom: 28px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
    right: 14px;
    left: 14px;
  }

  .brand-text strong {
    font-size: 0.87rem;
  }

  .brand-text small {
    font-size: 0.7rem;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-location {
    right: 8px;
    bottom: 20px;
    font-size: 0.78rem;
  }

  .section {
    padding: 76px 0;
  }

  .info-card,
  .service-item {
    padding: 25px;
  }

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

  .audience-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 135px;
  }

  .photo-panel,
  .video-panel {
    padding: 10px;
    border-radius: 22px;
  }

  .contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 24px;
    border-radius: 26px;
    text-align: center;
  }

  .contact-actions {
    justify-items: stretch;
  }

  .social-content,
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-tags {
    justify-content: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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

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