/* =========================
   Diva's Sal¨Žn & Academia
   Responsive one-page website
========================= */

:root {
  --color-black: #0b070c;
  --color-dark: #1b0c1e;
  --color-purple: #3a1741;
  --color-purple-soft: #5f2b68;
  --color-pink: #f781a8;
  --color-hot-pink: #e9348c;
  --color-gold: #f5d37a;
  --color-mint: #77ddd0;
  --color-white: #fff8ff;
  --color-muted: #e3cdda;
  --color-border: rgba(245, 211, 122, 0.26);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-white);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(233, 52, 140, 0.22), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(245, 211, 122, 0.12), transparent 20%),
    linear-gradient(180deg, #130916 0%, #1b0c1e 45%, #120812 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 129, 168, 0.08), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(119, 221, 208, 0.06), transparent 18%);
}

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

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--color-border);
  background: rgba(13, 7, 15, 0.9);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1200px, calc(100% - 36px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.brand span {
  font-size: 1.25rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold), var(--color-pink));
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-gold);
}

/* Hero Slider */

.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--color-dark);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image: var(--slide-image, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.8s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 7, 12, 0.9), rgba(27, 12, 30, 0.64), rgba(233, 52, 140, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  padding: 48px 0;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-gold));
}

h1,
h2,
h3 {
  line-height: 1.1;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.48);
}

.hero-content p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.slider-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dot.active {
  width: 34px;
  border-radius: 999px;
  background: var(--color-gold);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold), var(--color-pink), var(--color-mint));
  box-shadow: 0 10px 26px rgba(233, 52, 140, 0.28);
}

.btn-secondary {
  color: var(--color-white);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.08);
}

.btn.disabled {
  cursor: default;
  opacity: 0.82;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Sections */

.section {
  padding: 96px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.section-copy h2,
.section-heading h2,
.cta-box h2,
.contact-section h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.8vw, 4rem);
}

.section-copy p,
.section-heading p,
.cta-box p,
.contact-section p {
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.image-card,
.catalog-media {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.centered {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.centered .section-tag {
  justify-content: center;
}

/* Cards and grids */

.stats-grid,
.cards-grid,
.services-grid,
.contact-grid,
.branches-grid {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.stats-grid div,
.info-card,
.service-card,
.branch-card,
.contact-form,
.cta-box {
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-soft);
}

.stats-grid div {
  padding: 22px;
}

.stats-grid strong {
  display: block;
  color: var(--color-gold);
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.mission-section {
  padding-top: 0;
}

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

.info-card,
.branch-card {
  padding: 34px;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold), var(--color-pink));
}

.info-card h3,
.service-card h3,
.branch-card h3 {
  margin-bottom: 10px;
  color: var(--color-gold);
  font-size: 1.4rem;
}

.info-card p,
.service-card p,
.branch-card p {
  color: var(--color-muted);
}

/* Services */

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

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

/* Branches and catalog section */

.areas-section,
.catalog-section {
  background: linear-gradient(180deg, transparent, rgba(95, 43, 104, 0.28), transparent);
}

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

.branch-card.featured {
  background: linear-gradient(135deg, rgba(233, 52, 140, 0.18), rgba(245, 211, 122, 0.1));
}

.branch-card .btn {
  margin-top: 20px;
  width: fit-content;
}

.catalog-media {
  padding: 12px;
}

.catalog-media img {
  border-radius: 20px;
}

/* CTA and Contact */

.cta-section {
  padding: 30px 0 96px;
}

.cta-box {
  padding: 52px;
  text-align: center;
  background: linear-gradient(135deg, rgba(233, 52, 140, 0.24), rgba(245, 211, 122, 0.1), rgba(119, 221, 208, 0.11));
}

.cta-box .btn {
  margin: 12px auto 0;
}

.contact-section {
  padding-top: 0;
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  color: var(--color-gold);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  outline: none;
  color: var(--color-white);
  background: rgba(11, 7, 12, 0.76);
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */

.site-footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  background:
    radial-gradient(circle at top left, rgba(233, 52, 140, 0.14), transparent 25%),
    rgba(13, 7, 15, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  object-fit: cover;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--color-gold);
  margin-bottom: 14px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-grid a,
.footer-link {
  color: var(--color-gold);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 211, 122, 0.18);
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.32);
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp span {
  white-space: nowrap;
}



/* Catalog Ecommerce Page */

.catalog-page-section {
  padding-top: 110px;
}

.catalog-store-header {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.catalog-store-header h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.05;
}

.catalog-store-header p {
  max-width: 720px;
  color: var(--color-muted);
}

.catalog-search-box input {
  width: 100%;
  padding: 17px 22px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  outline: none;
  color: var(--color-white);
  background: rgba(11, 7, 12, 0.78);
  box-shadow: var(--shadow-soft);
}

.catalog-search-box input::placeholder {
  color: rgba(255, 248, 255, 0.62);
}

.catalog-banner {
  margin-bottom: 42px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-soft);
}

.catalog-banner img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(247, 129, 168, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-soft);
}

.catalog-sidebar h3 {
  margin-top: 14px;
  margin-bottom: 4px;
  color: var(--color-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-sidebar h3:first-child {
  margin-top: 0;
}

.filter-btn {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(245, 211, 122, 0.22);
  border-radius: 14px;
  color: var(--color-muted);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  background: rgba(11, 7, 12, 0.42);
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold), var(--color-pink), var(--color-mint));
  border-color: transparent;
}

.catalog-products-area {
  min-width: 0;
}

.catalog-products-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow-soft);
}

.catalog-products-top h2 {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.catalog-products-top p {
  color: var(--color-muted);
}

.catalog-products-top select {
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-white);
  outline: none;
  background: rgba(11, 7, 12, 0.78);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 211, 122, 0.55);
}

.product-image {
  display: grid;
  height: 210px;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 248, 255, 0.9), rgba(255, 248, 255, 0.68));
}

.product-image img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.product-info {
  padding: 22px;
}

.product-info span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-info h3 {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 1.12rem;
}

.product-info p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.product-info .btn {
  width: auto;
  min-width: 110px;
  display: inline-flex;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.85rem;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  font-size: 0.75rem;
  font-weight: 900;
}

.product-description {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.product-meta {
  margin-bottom: 10px;
  color: rgba(255, 248, 255, 0.72);
  font-size: 0.85rem;
}

.product-price {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 1.05rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.catalog-pagination button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.catalog-pagination button.active,
.catalog-pagination button:hover {
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold), var(--color-pink), var(--color-mint));
}

.empty-results {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  color: var(--color-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.075);
}

/* Performance */

.about-section,
.mission-section,
.services-section,
.areas-section,
.catalog-section,
.cta-section,
.contact-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* Responsive */

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .services-grid,
  .branches-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .catalog-store-header,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .navbar {
    width: min(100% - 28px, 1200px);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: rgba(27, 12, 30, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 84px;
  }

  .slide {
    background-position: center top;
  }

  .slide-overlay {
    background: linear-gradient(180deg, rgba(11, 7, 12, 0.72), rgba(11, 7, 12, 0.94));
  }

  .section {
    padding: 72px 0;
  }

  .stats-grid,
  .two-columns,
  .services-grid,
  .branches-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 34px 22px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    padding: 14px;
    border-radius: 50%;
  }

  .floating-whatsapp span:not(.whatsapp-icon) {
    display: none;
  }

  .floating-whatsapp .whatsapp-icon {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .catalog-page-section {
    padding-top: 84px;
  }

  .catalog-products-top {
    display: grid;
  }

  .catalog-products-top select {
    width: 100%;
  }

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

  .product-image {
    height: 230px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    background: #ffffff;
    border-radius: 50%;
}

.whatsapp-icon svg {
    width: 18px;
    height: 18px;
}

.contact-submit-btn {
  width: 100%;
}

.form-result {
  min-height: 24px;
  font-weight: 700;
  color: var(--color-gold);
}

.form-result.success {
  color: #7CFF9B;
}

.form-result.error {
  color: #FF7A7A;
}

.recaptcha-wrap {
  overflow: hidden;
}


/* =========================
   Final Responsive Fixes
========================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.brand span {
  white-space: nowrap;
}

.recaptcha-wrap {
  max-width: 100%;
  overflow: hidden;
}

.g-recaptcha {
  transform-origin: left top;
}

.contact-submit-btn {
  width: 100%;
}

.form-result {
  min-height: 24px;
  font-weight: 700;
  color: var(--color-gold);
}

.form-result.success {
  color: #7CFF9B;
}

.form-result.error {
  color: #FF7A7A;
}

/* Fix duplicated WhatsApp icon behavior */
.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: #ffffff;
  border-radius: 50%;
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

/* Tablet refinements */
@media (max-width: 900px) {
  .brand span {
    font-size: 1rem;
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.6rem, 10vw, 4.8rem);
  }

  .section-copy h2,
  .section-heading h2,
  .cta-box h2,
  .contact-section h2 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }
}

/* ==========================
   Scroll To Top Button
========================== */

.floating-top {
    position: fixed;
    right: 25px;
    bottom: 95px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-pink)
    );

    color: #1b0c1e;

    font-size: 24px;
    font-weight: 900;

    z-index: 9998;

    box-shadow: 0 10px 25px rgba(0,0,0,.35);

    transition: .25s ease;
}

.floating-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0,0,0,.45);
}

/* Mobile refinements */
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand span {
    max-width: 170px;
    font-size: 0.95rem;
  }

  .hero-slider {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 720px);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .g-recaptcha {
    transform: scale(0.88);
  }
  
  .floating-top {
    right: 15px;
    bottom: 85px;

    width: 50px;
    height: 50px;

    font-size: 20px;
}
}

/* Small mobile */
@media (max-width: 420px) {
  .brand span {
    max-width: 135px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .section-copy h2,
  .section-heading h2,
  .cta-box h2,
  .contact-section h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .g-recaptcha {
    transform: scale(0.82);
  }

  .contact-form {
    padding: 18px;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .brand span {
    display: none;
  }

  .g-recaptcha {
    transform: scale(0.76);
  }
}