:root {
  --navy-950: #040b24;
  --navy-900: #07134a;
  --navy-850: #081b66;
  --navy-800: #0b247c;
  --navy-700: #123aa0;
  --gold-500: #ffc400;
  --gold-600: #e6ae00;
  --white: #ffffff;
  --paper: #f7f8fb;
  --ink: #0a1025;
  --muted: #4f5d78;
  --line-dark: rgba(7, 19, 74, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 56px rgba(4, 11, 36, 0.28);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 12px;
  clip: auto;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(4, 11, 36, 0.94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 40px, var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 2px solid var(--gold-500);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.brand-badge::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -12px;
  height: 26px;
  background: var(--gold-500);
  transform: rotate(-8deg);
}

.brand-badge-large {
  width: 132px;
  height: 132px;
}

.brand-mountain {
  position: absolute;
  top: 10px;
  right: 8px;
  z-index: 1;
  width: 34px;
  height: 24px;
  background: var(--gold-500);
  clip-path: polygon(0 100%, 26% 44%, 42% 64%, 62% 12%, 100% 100%, 76% 78%, 62% 92%, 44% 62%, 25% 100%);
}

.brand-letter {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: 37px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18);
}

.brand-badge-large .brand-letter {
  font-size: 86px;
}

.brand-badge-large .brand-mountain {
  top: 22px;
  right: 18px;
  width: 76px;
  height: 52px;
}

.brand-text {
  display: grid;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 25px;
  line-height: 0.92;
  font-weight: 900;
  font-style: italic;
}

.brand-text span {
  color: var(--gold-500);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--white);
}

.header-whatsapp,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-whatsapp {
  color: var(--white);
  border: 2px solid var(--gold-500);
}

.header-whatsapp:hover,
.btn:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.btn {
  min-width: 180px;
  border: 2px solid transparent;
}

.btn-primary {
  color: var(--navy-900);
  background: linear-gradient(180deg, #ffdd55, var(--gold-500));
  box-shadow: 0 16px 28px rgba(255, 196, 0, 0.24);
}

.btn-secondary {
  color: var(--white);
  background: rgba(4, 11, 36, 0.28);
  border-color: var(--gold-500);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  padding: 88px 0 54px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-picture,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-picture {
  left: 36%;
  z-index: -2;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 11, 36, 1) 0%, rgba(7, 19, 74, 0.96) 42%, rgba(7, 19, 74, 0.54) 67%, rgba(4, 11, 36, 0.08) 100%),
    linear-gradient(180deg, transparent 72%, rgba(4, 11, 36, 0.96) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(230px, 1fr);
  align-items: end;
  min-height: 448px;
  gap: 34px;
}

.hero-copy {
  padding-top: 26px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.hero-slogan {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--gold-500);
  font-size: 26px;
  line-height: 1.28;
  font-weight: 900;
}

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

.hero-service {
  width: min(100%, 320px);
  justify-self: end;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(7, 19, 74, 0.9);
  border-left: 6px solid var(--gold-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-service span {
  display: block;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-service strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.intro-band,
.values-section,
.gallery-section {
  padding: 58px 0;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  align-items: end;
  gap: 28px;
}

.intro-grid h2,
.strip-copy h2,
.story-copy h2,
.section-heading h2,
.contact-info h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
}

.intro-grid p,
.strip-copy p,
.story-copy p,
.section-heading p,
.contact-info p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--navy-900);
  border: 2px solid var(--gold-500);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-section {
  padding: 54px 0;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(18, 58, 160, 0.24) 0 34%, transparent 34% 100%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
}

.preview-grid,
.values-grid,
.package-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.preview-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-card,
.value-card {
  padding: 28px;
  border-radius: var(--radius);
}

.preview-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
}

.preview-card h3,
.value-card h3,
.package-grid h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.preview-card p,
.value-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.preview-card p {
  color: #e7edff;
}

.preview-icon,
.package-icon,
.placeholder-icon,
.contact-icon,
.icon-whatsapp {
  display: inline-block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--gold-500);
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.icon-whatsapp {
  width: 23px;
  height: 23px;
  color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2C6.59 2 2.16 6.43 2.16 11.88c0 1.74.46 3.44 1.33 4.93L2 22l5.32-1.4a9.86 9.86 0 0 0 4.72 1.2h.01c5.45 0 9.88-4.43 9.88-9.88 0-2.64-1.03-5.12-2.88-7.01ZM12.05 20.1h-.01a8.2 8.2 0 0 1-4.18-1.14l-.3-.18-3.16.83.84-3.08-.2-.32a8.17 8.17 0 0 1-1.25-4.33c0-4.53 3.69-8.22 8.23-8.22a8.2 8.2 0 0 1 8.21 8.23c0 4.53-3.69 8.21-8.18 8.21Zm4.51-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.78.98-.14.16-.29.18-.54.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.41-.42-.56-.43h-.48c-.16 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.56.12.16 1.74 2.66 4.23 3.73.59.25 1.05.4 1.41.51.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.67-1.18.21-.58.21-1.07.15-1.18-.06-.1-.22-.16-.47-.28Z'/%3E%3C/svg%3E");
}

.icon-shield {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M32 4 10 12v17c0 15 10 26 22 31 12-5 22-16 22-31V12L32 4Zm12 23L30 41l-9-9 5-5 4 4 9-9 5 5Z'/%3E%3C/svg%3E");
}

.icon-box,
.icon-carton {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M32 4 6 18v28l26 14 26-14V18L32 4Zm0 8 14 7-14 7-14-7 14-7Zm-18 15 14 8v14l-14-8V27Zm36 14-14 8V35l14-8v14Z'/%3E%3C/svg%3E");
}

.icon-truck {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 14h35v29h4v-17h8l7 10v7h-5a8 8 0 0 1-16 0H24a8 8 0 0 1-16 0H6V14Zm8 29a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm31 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm2-11v-3h4l2 3h-6Z'/%3E%3C/svg%3E");
}

.icon-handshake {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22 19h11l5 6 5-4h7l9 13-8 15h-8l-5 5-6-5-5 5-17-17-5-9 11-10 6 1Zm9 26 7-7 7 7h3l5-10-6-8h-2l-8 7-7-8h-6l-7 7 14 12Z'/%3E%3C/svg%3E");
}

.icon-union {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M32 30a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm-18 2a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm36 0a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM32 34c-12 0-20 6-20 15v5h40v-5c0-9-8-15-20-15ZM4 51h6v-2c0-5 2-9 6-12-8 0-12 5-12 12v2Zm50-2v2h6v-2c0-7-4-12-12-12 4 3 6 7 6 12Z'/%3E%3C/svg%3E");
}

.strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 390px;
  background: var(--white);
}

.image-strip {
  padding: 0;
  background: var(--white);
}

.strip-grid img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.strip-copy {
  display: grid;
  align-content: center;
  padding: 46px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.strip-copy .btn {
  width: fit-content;
  margin-top: 24px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 310px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 11, 36, 0.96), rgba(7, 19, 74, 0.76)),
    var(--navy-900);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.44;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 8px;
  background: var(--gold-500);
}

.page-hero-company::before {
  background-image: url("assets/team-facade.png");
}

.page-hero-activity::before {
  background-image: url("assets/warehouse-logistics.png");
}

.page-hero-contact::before {
  background-image: url("assets/stock-fruit-gallery.png");
}

.page-hero-inner {
  padding: 72px 0 54px;
}

.page-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #eef3ff;
  font-size: 22px;
  line-height: 1.35;
}

.story-section {
  padding: 66px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(310px, 390px);
  align-items: center;
  gap: 34px;
}

.story-copy h2::after,
.section-heading h2::after,
.contact-info h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-top: 14px;
  background: var(--gold-500);
}

.story-copy p {
  color: #26314a;
  font-size: 17px;
}

.story-image {
  overflow: hidden;
  border: 4px solid var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.value-card {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 0 16px 34px rgba(7, 19, 74, 0.1);
}

.value-card h3 {
  color: var(--navy-900);
  text-transform: uppercase;
}

.value-card p {
  color: var(--muted);
}

.closing-band {
  padding: 52px 0;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(18, 58, 160, 0.32) 0 42%, transparent 42% 100%),
    var(--navy-950);
}

.closing-inner {
  max-width: 900px;
}

.closing-inner p {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
}

.activity-section {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.12) 0 16%, transparent 16% 100%),
    linear-gradient(118deg, var(--navy-950), var(--navy-850));
}

.activity-grid {
  display: grid;
  grid-template-columns: minmax(310px, 430px) 1fr;
  gap: 34px;
  align-items: center;
}

.list-panel {
  padding: 30px;
  border-radius: var(--radius);
}

.list-panel-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
}

.list-panel h2,
.packaging-layout h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
}

.icon-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #eef3ff;
  font-size: 17px;
  line-height: 1.35;
}

.list-check {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold-500);
}

.list-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid var(--navy-900);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.activity-media {
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.activity-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.packaging-section {
  padding: 62px 0;
  color: var(--white);
  background: var(--navy-900);
}

.packaging-layout .section-heading {
  margin-bottom: 24px;
}

.package-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.package-grid article {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 150px;
  padding: 18px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.package-grid h3 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.package-icon {
  width: 54px;
  height: 54px;
}

.icon-crate {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 20h48v30H8V20Zm8 6v18h4V26h-4Zm14 0v18h4V26h-4Zm14 0v18h4V26h-4ZM8 31h48v6H8v-6Z'/%3E%3C/svg%3E");
}

.icon-basket {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 22h46l-5 30H14L9 22Zm10 7 3 17h4l-3-17h-4Zm13 0v17h4V29h-4Zm13 0-3 17h4l3-17h-4ZM18 13h28v6H18v-6Z'/%3E%3C/svg%3E");
}

.icon-scale {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M24 11h16v7H24v-7Zm-6 11h28v7H18v-7Zm5 9h18l6 22H17l6-22Zm9 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z'/%3E%3C/svg%3E");
}

.icon-bag {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M25 9h14l-4 9h-6l-4-9Zm-5 14h24c5 7 9 18 9 30H11c0-12 4-23 9-30Zm10 8v14h5V31h-5Z'/%3E%3C/svg%3E");
}

.icon-pallet {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 43h48v9H8v-9Zm5-17h15v15H13V26Zm23 0h15v15H36V26Zm-9-14h10v12H27V12Zm-17 42h7v5h-7v-5Zm37 0h7v5h-7v-5Zm-19 0h8v5h-8v-5Z'/%3E%3C/svg%3E");
}

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

.gallery-card {
  overflow: hidden;
  min-height: 230px;
  border: 2px dashed rgba(7, 19, 74, 0.24);
  border-radius: var(--radius);
  background: var(--white);
}

.gallery-card img,
.gallery-placeholder {
  width: 100%;
  height: 230px;
}

.gallery-card img {
  object-fit: cover;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--navy-900);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.16), transparent 42%),
    #f1f4fb;
}

.gallery-placeholder strong {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.placeholder-icon {
  width: 54px;
  height: 54px;
  color: var(--navy-800);
}

.icon-warehouse {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 26 32 11l26 15v27H6V26Zm8 6v15h8V32h-8Zm14 0v15h8V32h-8Zm14 0v15h8V32h-8Z'/%3E%3C/svg%3E");
}

.icon-fruit {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M34 15c4-7 11-9 18-6-1 8-7 12-15 12 7 2 12 9 12 17 0 10-8 18-17 18S15 48 15 38c0-9 6-16 14-18-2-5-7-7-12-8l2-6c7 1 12 4 15 9Z'/%3E%3C/svg%3E");
}

.contact-section {
  padding: 66px 0;
  color: var(--white);
  background:
    linear-gradient(132deg, transparent 0 68%, rgba(255, 196, 0, 0.15) 68% 100%),
    linear-gradient(118deg, rgba(18, 58, 160, 0.22) 0 36%, transparent 36% 100%),
    var(--navy-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 54px;
  align-items: start;
}

.contact-info h2 {
  color: var(--gold-500);
}

.contact-info h2::after {
  background: var(--white);
}

.contact-info p {
  color: var(--white);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  color: #edf2ff;
}

.contact-methods strong {
  display: block;
  color: var(--gold-500);
  font-size: 14px;
  text-transform: uppercase;
}

.contact-methods span:not(.contact-icon) {
  font-size: 15px;
  line-height: 1.45;
}

.contact-icon {
  width: 50px;
  height: 50px;
  color: var(--gold-500);
}

.icon-phone {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 7h24a5 5 0 0 1 5 5v40a5 5 0 0 1-5 5H20a5 5 0 0 1-5-5V12a5 5 0 0 1 5-5Zm3 8v31h18V15H23Zm9 38a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.icon-mail {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 15h48v34H8V15Zm24 20 18-14H14l18 14Zm-8-1L12 24v18h40V24L40 34l-8 7-8-7Z'/%3E%3C/svg%3E");
}

.icon-location {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M32 5c-11 0-20 9-20 20 0 17 20 34 20 34s20-17 20-34C52 14 43 5 32 5Zm0 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z'/%3E%3C/svg%3E");
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #e7edff;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f4f6ff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-500);
}

.form-full {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #dce5ff;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--navy-900);
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease;
}

.floating-whatsapp .icon-whatsapp {
  width: 31px;
  height: 31px;
}

.site-footer {
  color: #d9e2ff;
  background: #030816;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.footer-inner span:last-child {
  color: var(--gold-500);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .nav-shell {
    gap: 14px;
  }

  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .header-whatsapp {
    padding-inline: 14px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-slogan {
    font-size: 23px;
  }

  .story-grid,
  .activity-grid,
  .contact-grid,
  .intro-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .story-mark {
    display: none;
  }

  .story-image img,
  .activity-media img {
    height: 360px;
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-whatsapp {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: none;
    padding: 18px;
    background: rgba(4, 11, 36, 0.98);
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text span {
    font-size: 12px;
  }

  .brand-badge {
    width: 50px;
    height: 50px;
  }

  .brand-letter {
    font-size: 32px;
  }

  .brand-mountain {
    top: 9px;
    right: 7px;
    width: 30px;
    height: 20px;
  }

  .home-hero {
    min-height: auto;
    padding: 62px 0 38px;
  }

  .hero-picture {
    left: 0;
    opacity: 0.48;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 11, 36, 0.98) 0%, rgba(7, 19, 74, 0.94) 62%, rgba(4, 11, 36, 0.96) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 500px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-service {
    width: 100%;
    justify-self: stretch;
  }

  .intro-band,
  .preview-section,
  .values-section,
  .gallery-section,
  .story-section,
  .activity-section,
  .packaging-section,
  .contact-section,
  .closing-band {
    padding-block: 46px;
  }

  .intro-grid h2,
  .strip-copy h2,
  .story-copy h2,
  .section-heading h2,
  .contact-info h2 {
    font-size: 32px;
  }

  .preview-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .strip-copy {
    padding: 34px 0;
  }

  .strip-grid img {
    min-height: 300px;
  }

  .page-hero {
    min-height: 260px;
  }

  .page-hero-inner {
    padding: 56px 0 42px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .story-image img,
  .activity-media img {
    height: 310px;
  }

  .closing-inner p {
    font-size: 26px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-slogan {
    font-size: 19px;
  }

  .intro-grid h2,
  .strip-copy h2,
  .story-copy h2,
  .section-heading h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

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

  .package-grid article {
    min-height: 128px;
  }

  .gallery-card,
  .gallery-card img,
  .gallery-placeholder {
    height: 210px;
    min-height: 210px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
