/* ==========================================================================
   Ganimede Viaggi - Front Page Stylesheet
   Homepage-specific styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero -- .gv-hero
   -------------------------------------------------------------------------- */

.gv-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--c-ink);
}

/* Slide backgrounds */
.gv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 10s linear;
  will-change: opacity, transform;
}

.gv-hero__slide--active {
  opacity: 1;
  transform: scale(1.06);
}

.gv-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay gradient */
.gv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.45) 40%,
    rgba(30, 42, 56, 0.5) 100%
  );
  z-index: 1;
}

/* Decorative radial orbs */
.gv-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.gv-hero__orb--orange {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--c-orange-rgb), 0.12), transparent 70%);
}

.gv-hero__orb--blue {
  bottom: -15%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--c-blue-rgb), 0.09), transparent 70%);
}

/* Content wrapper */
.gv-hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(24px, 6vw, 100px) 80px;
  max-width: 780px;
}

/* Badge row (container for the pill + destination label) */
.gv-hero__badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

/* Badge pill (year label) */
.gv-hero__badge {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--c-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Badge destination label */
.gv-hero__badge-dest {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
}

/* Badge name and tag (inherit styles from parent) */
.gv-hero__badge-name,
.gv-hero__badge-tag {
  /* Inherits from .gv-hero__badge-dest */
}

/* Title */
.gv-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 24px;
}

/* Gradient accent text inside title (kept for backward compat) */
.gv-hero__title-accent {
  background: linear-gradient(135deg, var(--c-orange), var(--c-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient text span - used in PHP template */
.gv-hero__gradient {
  background: linear-gradient(135deg, var(--c-orange), var(--c-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.gv-hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

/* Actions row (legacy alias) */
.gv-hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Buttons row (PHP template uses this) */
.gv-hero__buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Dot indicators */
.gv-hero__dots {
  display: flex;
  gap: 6px;
  margin-top: 48px;
}

.gv-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
}

.gv-hero__dot--active {
  width: 40px;
  background: var(--c-orange);
  box-shadow: 0 2px 10px rgba(var(--c-orange-rgb), 0.4);
}

/* Floating stats -- right side */
.gv-hero__stats {
  position: absolute;
  top: 50%;
  right: clamp(20px, 4vw, 60px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 3;
}

.gv-hero__stat {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 20px 26px;
  text-align: center;
  min-width: 110px;
  box-shadow: var(--shadow-md);
}

.gv-hero__stat-number {
  font-family: var(--ff-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.gv-hero__stat-number--orange { color: var(--c-orange); }
.gv-hero__stat-number--blue   { color: var(--c-blue); }
.gv-hero__stat-number--green  { color: var(--c-green); }

.gv-hero__stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Marquee -- .gv-marquee
   -------------------------------------------------------------------------- */

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gv-marquee {
  background: var(--c-surface);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}

.gv-marquee__track {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.gv-marquee__item {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107, 123, 141, 0.38);
  flex-shrink: 0;
}

.gv-marquee__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gv-marquee__dot--orange { background: var(--c-orange); }
.gv-marquee__dot--blue   { background: var(--c-blue); }
.gv-marquee__dot--green  { background: var(--c-green); }

/* --------------------------------------------------------------------------
   Categories Section -- .gv-categories
   -------------------------------------------------------------------------- */

.gv-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --------------------------------------------------------------------------
   About Section -- .gv-about
   -------------------------------------------------------------------------- */

/* Section wrapper (sits on the <section> tag) */
.gv-about {
  background: var(--c-sand);
}

/* Grid layout (sits on the inner .gv-about__grid container) */
.gv-about__grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Content wrapper */
.gv-about__content {
  /* Flex container for text flow, no special layout needed */
}

/* Photo composition */
.gv-about__photos {
  position: relative;
  height: 520px;
}

.gv-about__photo {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--c-surface);
}

.gv-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gv-about__photo--top {
  top: 0;
  left: 0;
  width: 75%;
  height: 62%;
}

.gv-about__photo--bottom {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 52%;
}

/* Experience badge */
.gv-about__experience-badge {
  position: absolute;
  top: 52%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: var(--c-surface);
  border-radius: 20px;
  padding: 22px 30px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--c-orange-rgb), 0.12);
  z-index: 2;
}

.gv-about__experience-number {
  font-family: var(--ff-heading);
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-orange), var(--c-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.gv-about__experience-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 2px;
}

/* About text -- direct class on <p> elements */
.gv-about__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-muted);
  margin-bottom: 20px;
}

.gv-about__text:first-of-type {
  margin-top: -20px;
}

.gv-about__text--light {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(107, 123, 141, 0.67);
  margin-bottom: 40px;
}

/* Features grid inside about */
.gv-about__features,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* About feature items */
.gv-about__feature {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all var(--t-normal);
}

.gv-about__feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gv-about__feature-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.gv-about__feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.gv-about__feature-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Wedding Section -- .gv-wedding
   -------------------------------------------------------------------------- */

/* Section wrapper */
.gv-wedding-section {
  /* Uses .gv-section padding from main.css */
}

.gv-wedding {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--c-blue-dark), var(--c-blue));
}

.gv-wedding__bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.gv-wedding__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative orb */
.gv-wedding__orb {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--c-orange-rgb), 0.15), transparent 70%);
  pointer-events: none;
}

.gv-wedding__inner,
.wedding-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: clamp(56px, 8vh, 100px) clamp(36px, 5vw, 72px);
}

/* Content wrapper inside wedding */
.gv-wedding__content {
  /* Container for section header, text, and button */
}

/* Section header modifiers for dark (wedding) backgrounds */
.gv-section-header--light h2 {
  color: #fff;
}

.gv-section-header__bar--orange {
  background: var(--c-orange);
}

.gv-section-header__label--light {
  color: var(--c-orange-light);
}

/* Wedding title accent */
.gv-wedding__accent {
  color: var(--c-orange-light);
}

/* Wedding description text */
.gv-wedding__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Wedding photos */
.gv-wedding__photos,
.wedding-photos {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.gv-wedding__photo {
  width: 180px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.gv-wedding__photo--left {
  transform: rotate(-4deg) translateY(-12px);
}

.gv-wedding__photo--right {
  transform: rotate(4deg) translateY(12px);
}

.gv-wedding__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gv-wedding__photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.gv-wedding__photo-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Tours Section -- .gv-tours
   -------------------------------------------------------------------------- */

/* Section wrapper */
.gv-tours-section {
  /* Uses .gv-section padding from main.css */
}

.gv-tours__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.gv-tours__all {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
  text-decoration: none;
  margin-bottom: 52px;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.gv-tours__all:hover {
  color: var(--c-orange-light);
}

.gv-tours__grid,
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gv-tours__empty {
  text-align: center;
  color: var(--c-muted);
  font-size: 16px;
  padding: 60px 0;
}

/* --------------------------------------------------------------------------
   Certifications -- .gv-certifications
   -------------------------------------------------------------------------- */

.gv-certifications {
  padding: clamp(44px, 5vh, 72px) var(--section-px);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.gv-certifications__label {
  text-align: center;
  margin-bottom: 36px;
}

.gv-certifications__label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(107, 123, 141, 0.5);
}

.gv-certifications__list {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
}

.gv-certifications__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity var(--t-fast);
  cursor: default;
}

.gv-certifications__item:hover {
  opacity: 1;
}

.gv-certifications__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.gv-certifications__icon--orange { color: var(--c-orange); }
.gv-certifications__icon--blue   { color: var(--c-blue); }
.gv-certifications__icon--green  { color: var(--c-green); }

.gv-certifications__name {
  font-size: 10px;
  font-weight: 600;
  color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   CTA / Contact Section -- .gv-cta
   -------------------------------------------------------------------------- */

/* Section wrapper */
.gv-cta-section {
  /* Uses .gv-section padding from main.css */
}

/* The CTA box */
.gv-cta {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-2xl);
  padding: clamp(44px, 6vh, 80px) clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

/* Inner grid layout */
.gv-cta__inner,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.gv-cta__orb {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--c-orange-rgb), 0.03), transparent 70%);
  top: -120px;
  right: -60px;
  pointer-events: none;
}

/* CTA text wrapper */
.gv-cta__text {
  /* Container for section header + desc paragraph */
}

.gv-cta__text p,
.gv-cta__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
  max-width: 420px;
  margin-top: -20px;
}

/* Contact items */
.gv-cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gv-cta__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  text-decoration: none;
  transition: all var(--t-fast);
}

.gv-cta__contact-item:hover {
  transform: translateX(4px);
}

/* BEM modifier approach (fallback/legacy) */
.gv-cta__contact-item--orange:hover {
  border-color: rgba(var(--c-orange-rgb), 0.25);
  box-shadow: 0 8px 24px rgba(var(--c-orange-rgb), 0.07);
}

.gv-cta__contact-item--blue:hover {
  border-color: rgba(var(--c-blue-rgb), 0.25);
  box-shadow: 0 8px 24px rgba(var(--c-blue-rgb), 0.07);
}

.gv-cta__contact-item--green:hover {
  border-color: rgba(var(--c-green-rgb), 0.25);
  box-shadow: 0 8px 24px rgba(var(--c-green-rgb), 0.07);
}

/* Inline --contact-color approach (used in PHP template) */
.gv-cta__contact-item[style*="--contact-color:#F5881F"]:hover {
  border-color: rgba(245, 136, 31, 0.25);
  box-shadow: 0 8px 24px rgba(245, 136, 31, 0.07);
}

.gv-cta__contact-item[style*="--contact-color:#2E86C1"]:hover {
  border-color: rgba(46, 134, 193, 0.25);
  box-shadow: 0 8px 24px rgba(46, 134, 193, 0.07);
}

.gv-cta__contact-item[style*="--contact-color:#58B43F"]:hover {
  border-color: rgba(88, 180, 63, 0.25);
  box-shadow: 0 8px 24px rgba(88, 180, 63, 0.07);
}

.gv-cta__contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.gv-cta__contact-icon--orange { background: rgba(var(--c-orange-rgb), 0.07); }
.gv-cta__contact-icon--blue   { background: rgba(var(--c-blue-rgb), 0.07); }
.gv-cta__contact-icon--green  { background: rgba(var(--c-green-rgb), 0.07); }

/* Inline --contact-color icon backgrounds */
.gv-cta__contact-item[style*="--contact-color:#F5881F"] .gv-cta__contact-icon {
  background: rgba(245, 136, 31, 0.07);
}

.gv-cta__contact-item[style*="--contact-color:#2E86C1"] .gv-cta__contact-icon {
  background: rgba(46, 134, 193, 0.07);
}

.gv-cta__contact-item[style*="--contact-color:#58B43F"] .gv-cta__contact-icon {
  background: rgba(88, 180, 63, 0.07);
}

/* Contact info wrapper */
.gv-cta__contact-info {
  display: flex;
  flex-direction: column;
}

.gv-cta__contact-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
}

.gv-cta__contact-sub {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Responsive -- Mobile
   -------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  /* Hero */
  .gv-hero__content {
    padding: 100px 20px 60px;
    max-width: none;
  }

  .gv-hero__title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .gv-hero__subtitle {
    font-size: 15px;
    max-width: none;
  }

  .gv-hero__actions,
  .gv-hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .gv-hero__actions .gv-btn-primary,
  .gv-hero__actions .gv-btn-secondary,
  .gv-hero__buttons .gv-btn-primary,
  .gv-hero__buttons .gv-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .gv-hero__stats {
    display: none;
  }

  .gv-hero__dots {
    margin-top: 32px;
  }

  /* Marquee */
  .gv-marquee__track {
    gap: 28px;
  }

  .gv-marquee__item {
    gap: 28px;
    font-size: 11px;
  }

  /* Categories */
  .gv-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About */
  .gv-about__grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gv-about__photos {
    height: 340px;
    order: -1;
  }

  .gv-about__photo--top {
    width: 70%;
    height: 60%;
  }

  .gv-about__photo--bottom {
    width: 60%;
    height: 50%;
  }

  .gv-about__experience-badge {
    padding: 16px 22px;
  }

  .gv-about__experience-number {
    font-size: 30px;
  }

  .gv-about__features,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Wedding */
  .gv-wedding__inner,
  .wedding-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }

  .gv-wedding__photos,
  .wedding-photos {
    display: none;
  }

  .gv-wedding__text {
    max-width: none;
  }

  /* Tours */
  .gv-tours__grid,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gv-tours__all {
    margin-bottom: 32px;
  }

  /* Certifications */
  .gv-certifications__list {
    gap: 16px;
  }

  /* CTA */
  .gv-cta {
    padding: 32px 24px;
  }

  .gv-cta__inner,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gv-cta__text p,
  .gv-cta__desc {
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive -- Tablet
   -------------------------------------------------------------------------- */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Hero */
  .gv-hero__stats {
    display: none;
  }

  .gv-hero__content {
    max-width: 600px;
  }

  /* Categories */
  .gv-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .gv-about__grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gv-about__photos {
    max-width: 500px;
    margin: 0 auto;
  }

  .gv-about__features,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  /* Wedding */
  .gv-wedding__inner,
  .wedding-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gv-wedding__photos,
  .wedding-photos {
    justify-content: flex-start;
  }

  /* Tours */
  .gv-tours__grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .gv-cta__inner,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   Responsive -- Desktop Large (1440px+)
   -------------------------------------------------------------------------- */

@media screen and (min-width: 1440px) {
  .gv-hero__content {
    max-width: 860px;
    padding-left: 100px;
  }

  .gv-hero__title {
    font-size: 82px;
  }
}
