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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: auto;
}

/* Header */
.site-header {
  background: #050505;
  border-bottom: 1px solid rgba(251, 191, 36, 0.22);
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: #fbbf24;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

nav a:hover {
  background: #fbbf24;
  color: #050505;
}

.nav-call {
  background: #fbbf24;
  color: #050505;
}
  .brand{
    font-size:17px;
  }

  .brand img{
    width:34px;
    height:34px;
  }
/* Mobile Menu */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #fbbf24;
  color: #050505;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 68px 0;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 34%),
    linear-gradient(135deg, #050505, #111111);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 720px;
}

.hero p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 560px;
  margin-bottom: 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.btn.primary {
  background: #fbbf24;
  color: #050505;
  box-shadow: 0 14px 34px rgba(251, 191, 36, 0.22);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: #f59e0b;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  max-width:700px;
}

.hero-points a{
  width:100%;
}

.hero-points span{
  min-height:72px;
  padding:14px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  color:#1f2937;
  font-size:15px;
  font-weight:800;
  transition:.3s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.hero-points span i{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  background:#fff;
}

/* Individual Colors */

.hero-points .deal i{
  color:#ff6b00;
  background:rgba(255,107,0,.12);
}

.hero-points .family i{
  color:#2563eb;
  background:rgba(37,99,235,.12);
}

.hero-points .luxury i{
  color:#7c3aed;
  background:rgba(124,58,237,.12);
}

.hero-points .support i{
  color:#16a34a;
  background:rgba(22,163,74,.12);
}

.hero-points .phone i{
  color:#dc2626;
  background:rgba(220,38,38,.12);
}

.hero-points .call i{
  color:#0891b2;
  background:rgba(8,145,178,.12);
}

/* Hover */

.hero-points span:hover{
  transform:translateY(-4px);
  background:#fbbf24;
  color:#050505;
}

.hero-points span:hover i{
  background:#050505;
  color:#fbbf24;
}

/* Mobile */

@media(max-width:768px){

  .hero-points{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .hero-points span{
    min-height:58px;
    padding:10px 12px;
    border-radius:18px;
    font-size:11px;
    gap:8px;
  }

  .hero-points span i{
    width:30px;
    height:30px;
    min-width:30px;
    font-size:13px;
  }
}

.hero-image {
  padding: 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.hero-image img {
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

/* Section */
.section {
  padding: 64px 0;
}

.soft-bg {
  background: #fff8e7;
}

.section-head {
  text-align: center;
  max-width: 760px;
}

.section-tag {
  display: inline-block;
  background: #fbbf24;
  color: #050505;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #050505;
  margin-bottom: 12px;
}

.section-head p {
  color: #4b5563;
  font-size: 15px;
}

/* Cards */
.cards,
.destination-grid,
.steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.step,
.destination-card {
  background: #ffffff;
  border: 1px solid #f3d37a;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.card,
.step {
  padding: 26px;
}

.card h3,
.step h3,
.destination-card h3 {
  color: #050505;
  font-size: 20px;
  margin-bottom: 9px;
}

.card p,
.step p,
.destination-card p {
  color: #4b5563;
  font-size: 14px;
}

.mini-call {
  display: inline-flex;
  margin-top: 16px;
  background: #050505;
  color: #fbbf24;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: 0.3s ease;
}

.mini-call:hover {
  background: #fbbf24;
  color: #050505;
}

/* Section Call Box */
.section-call-box {
  margin-top: 38px;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 32%),
    linear-gradient(135deg, #050505, #151515);
  color: #ffffff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-call-box h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.section-call-box p {
  color: #d1d5db;
  font-size: 14px;
}

.section-call-btn {
  min-width: 230px;
  height: 58px;
  background: #fbbf24;
  color: #050505;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}

/* Destination */
.destination-card img {
  height: 220px;
  object-fit: cover;
}

.destination-card div {
  padding: 22px;
}

.offer-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.offer-list div {
  background: #050505;
  color: #fbbf24;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

/* Steps */
.step span {
  width: 48px;
  height: 48px;
  background: #fbbf24;
  color: #050505;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.steps-call-box {
  margin-top: 40px;
  background: #050505;
  color: #ffffff;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(251, 191, 36, 0.32);
}

.steps-call-box h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.steps-call-box p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #d1d5db;
  font-size: 15px;
}

/* Footer */
.cruise-footer {
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 32%),
    linear-gradient(135deg, #050505, #111111);
  color: #d1d5db;
}

.cruise-footer-wrap {
  padding: 62px 0 38px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 46px;
}

.footer-logo {
  display: inline-block;
  font-size: 26px;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 14px;
}

.cruise-footer-brand p {
  max-width: 460px;
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 20px;
}

.footer-call-btn {
  display: inline-flex;
  background: #fbbf24;
  color: #050505;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.cruise-footer-links h4 {
  color: #fbbf24;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.cruise-footer-links a {
  display: block;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 11px;
}

.cruise-footer-links a:hover {
  color: #fbbf24;
}

.cruise-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #d1d5db;
  font-size: 13px;
}

/* Mobile Fixed Call Button */
.mobile-call-bar {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

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

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

@media (max-width: 768px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: absolute;
    top: 76px;
    left: 4%;
    width: 92%;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    color: #050505;
    background: #f7f7f7;
    text-align: center;
  }

  .hero {
    padding: 20px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 330px;
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-points span {
    min-height: 52px;
    padding: 9px 8px;
    font-size: 11px;
    gap: 6px;
  }

  .hero-points span::before {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 11px;
  }

  .hero-image img {
    height: 245px;
  }

  .section {
    padding: 46px 0;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .section-head p,
  .card p,
  .step p,
  .destination-card p {
    font-size: 13px;
  }

  .cards,
  .destination-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card,
  .step {
    padding: 20px;
  }

  .destination-card img {
    height: 190px;
  }

  .section-call-box {
    flex-direction: column;
    text-align: center;
    padding: 26px 18px;
  }

  .section-call-box h3,
  .steps-call-box h3 {
    font-size: 22px;
  }

  .section-call-btn {
    width: 100%;
    min-width: auto;
  }

  .steps-call-box {
    padding: 28px 18px;
  }

  .cruise-footer-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 0 30px;
    text-align: center;
  }

  .cruise-footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .cruise-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-call-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 14px;
    background: rgba(5, 5, 5, 0.96);
    z-index: 9999;
    display: block;
  }

  .mobile-call-bar a {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    background: #fbbf24;
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
  }
}

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

  .hero h1 {
    font-size: 25px;
    line-height: 35px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-points span {
    font-size: 10px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-list div {
    font-size: 12px;
  }
}
/* Hero */

.legal-hero{
  padding:82px 0;
  background:
    radial-gradient(circle at top left, rgba(251,191,36,.18), transparent 34%),
    linear-gradient(135deg,#050505,#151515);
  text-align:center;
  border-bottom:1px solid rgba(251,191,36,.2);
}

.legal-hero h1{
  font-size:clamp(36px,5vw,58px);
  line-height:1.1;
  color:#ffffff;
  margin-bottom:12px;
}

.legal-hero p{
  font-size:17px;
  color:#d1d5db;
  max-width:620px;
  margin:auto;
}

/* Content */

.legal-content{
  background:#ffffff;
  color:#111111;
  margin:50px auto;
  padding:48px;
  border-radius:28px;
  border:1px solid rgba(251,191,36,.35);
  box-shadow:0 25px 70px rgba(0,0,0,.28);
}

.legal-content h2{
  font-size:25px;
  line-height:1.25;
  color:#050505;
  margin-top:32px;
  margin-bottom:10px;
  padding-left:14px;
  border-left:5px solid #fbbf24;
}

.legal-content h2:first-child{
  margin-top:0;
}

.legal-content p{
  color:#374151;
  font-size:15px;
  line-height:1.8;
  margin-bottom:14px;
}

.legal-content ul{
  margin:14px 0 18px 24px;
}

.legal-content li{
  color:#374151;
  font-size:15px;
  line-height:1.8;
  margin-bottom:8px;
}

.legal-content li::marker{
  color:#fbbf24;
}



/* Inner Legal Hero */
.inner-hero{
  padding:70px 0 58px;
  background:
    radial-gradient(circle at top left, rgba(251,191,36,.18), transparent 34%),
    linear-gradient(135deg,#050505,#151515);
  color:#fff;
  text-align:center;
  border-bottom:1px solid rgba(251,191,36,.22);
}

.inner-hero .eyebrow{
  display:inline-block;
  background:#fbbf24;
  color:#050505;
  padding:7px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}

.inner-hero h1{
  font-size:clamp(34px,5vw,56px);
  line-height:1.1;
  margin-bottom:14px;
}

.inner-hero p{
  max-width:720px;
  margin:0 auto;
  color:#d1d5db;
  font-size:16px;
  line-height:1.7;
}

/* Content Page */
.content-page{
  padding:55px 0;
  background:#fff8e7;
}

.page-card{
  background:#ffffff;
  border:1px solid rgba(251,191,36,.45);
  border-radius:28px;
  padding:44px;
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.policy-block{
  padding:24px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.policy-block:first-child{
  padding-top:0;
}

.policy-block:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.policy-block h2{
  font-size:24px;
  color:#050505;
  margin-bottom:10px;
  padding-left:14px;
  border-left:5px solid #fbbf24;
  line-height:1.25;
}

.policy-block p{
  color:#4b5563;
  font-size:15px;
  line-height:1.8;
}

.policy-block ul{
  margin:12px 0 0 22px;
}

.policy-block li{
  color:#4b5563;
  font-size:15px;
  line-height:1.8;
  margin-bottom:7px;
}

.policy-block li::marker{
  color:#fbbf24;
}

/* Mobile */
@media(max-width:768px){

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

  .inner-hero h1{
    font-size:30px;
  }

  .inner-hero p{
    font-size:14px;
  }

  .content-page{
    padding:34px 0;
  }

  .page-card{
    padding:26px 18px;
    border-radius:20px;
  }

  .policy-block{
    padding:20px 0;
  }

  .policy-block h2{
    font-size:20px;
  }

  .policy-block p,
  .policy-block li{
    font-size:14px;
  }
}

@media(max-width:480px){

  .inner-hero{
    padding:44px 0 36px;
  }

  .inner-hero .eyebrow{
    font-size:11px;
    padding:6px 12px;
  }

  .inner-hero h1{
    font-size:27px;
  }

  .page-card{
    padding:22px 15px;
  }

  .policy-block h2{
    font-size:18px;
  }

  .policy-block p,
  .policy-block li{
    font-size:13px;
  }
}
.site-footer{
  background:
    radial-gradient(circle at top left, rgba(253,185,19,.12), transparent 34%),
    linear-gradient(135deg,#050505,#101010);
  color:#ffffff;
  padding:70px 0 0;
  border-top:1px solid rgba(253,185,19,.18);
  overflow:hidden;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr 1fr;
  gap:42px;
  padding-bottom:40px;
}

/* Brand */

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.footer-brand img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.footer-brand span:last-child{
  font-size:24px;
  font-weight:900;
  color:#FDB913;
  line-height:1.1;
}

.site-footer p{
  color:#cbd5e1;
  font-size:15px;
  line-height:1.8;
  max-width:340px;
}

/* Footer Headings */

.site-footer h4{
  color:#FDB913;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:18px;
  font-weight:900;
}

/* Footer Links */

.site-footer a{
  display:block;
  color:#e5e7eb;
  font-size:15px;
  font-weight:600;
  margin-bottom:13px;
  transition:.3s ease;
}

.site-footer a:hover{
  color:#FDB913;
  transform:translateX(4px);
}

/* Support Box */

.support-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(253,185,19,.14);
  border-radius:24px;
  padding:24px;
  backdrop-filter:blur(10px);
}

.support-contact{
  display:flex !important;
  align-items:flex-start;
  gap:14px;
  padding:14px 0;
  margin-bottom:0 !important;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.support-contact:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.support-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:rgba(253,185,19,.1);
  display:flex;
  align-items:center;
  justify-content:center;
}

.support-contact span:last-child{
  color:#f3f4f6;
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

/* Footer Bottom */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
  text-align:center;
  color:#cbd5e1;
  font-size:14px;
}

/* Tablet */

@media(max-width:1024px){

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

/* Mobile */

@media(max-width:768px){

  .site-footer{
    padding:50px 0 0;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }

  .footer-brand{
    justify-content:center;
  }

  .site-footer p{
    margin:auto;
  }

  .support-box{
    padding:20px;
    text-align:left;
  }

  .support-contact{
    gap:12px;
  }

  .footer-brand span:last-child{
    font-size:20px;
  }

  .site-footer a{
    font-size:14px;
  }
}

@media(max-width:480px){

  .site-footer{
    padding:42px 0 0;
  }

  .footer-grid{
    gap:24px;
  }

  .support-box{
    border-radius:20px;
    padding:18px;
  }

  .support-icon{
    width:38px;
    height:38px;
    min-width:38px;
  }

  .support-contact span:last-child{
    font-size:13px;
  }

  .footer-bottom{
    font-size:13px;
    padding:18px 0;
  }
}
/* Header */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:
    linear-gradient(135deg,#050505,#101010);
  border-bottom:1px solid rgba(253,185,19,.18);
  backdrop-filter:blur(12px);
}

.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* Brand */

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

.brand img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand span:last-child{
  color:#FDB913;
  font-size:24px;
  font-weight:900;
  letter-spacing:-0.4px;
  line-height:1.1;
}

/* Menu */

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

.menu a{
  color:#f3f4f6;
  font-size:14px;
  font-weight:700;
  padding:10px 15px;
  border-radius:999px;
  transition:.3s ease;
}

.menu a:hover{
  background:#FDB913;
  color:#050505;
}

/* CTA */

.nav-cta{
  height:48px;
  padding:0 22px;
  border-radius:999px;
  background:#FDB913;
  color:#050505;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(253,185,19,.22);
  transition:.3s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);
  background:#ffca2c;
}

/* Mobile Toggle */

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#FDB913;
  color:#050505;
  font-size:24px;
  font-weight:700;
  cursor:pointer;
}

/* Tablet */

@media(max-width:1024px){

  .brand span:last-child{
    font-size:21px;
  }

  .menu{
    gap:6px;
  }

  .menu a{
    padding:9px 12px;
    font-size:13px;
  }

  .nav-cta{
    padding:0 18px;
  }
}

/* Mobile */

@media(max-width:768px){

  .nav-wrap{
    min-height:72px;
    position:relative;
  }

  .brand span:last-child{
    font-size:18px;
  }

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

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#ffffff;
    border-radius:22px;
    padding:18px;
    margin-top:14px;
    display:none;
    flex-direction:column;
    gap:10px;
    box-shadow:0 24px 60px rgba(0,0,0,.18);
  }

  .menu.active{
    display:flex;
  }

  .menu a{
    width:100%;
    background:#f8fafc;
    color:#111827;
    text-align:center;
    padding:13px 14px;
    border-radius:14px;
    font-size:14px;
  }

  .menu a:hover{
    background:#FDB913;
    color:#050505;
  }

  .nav-cta{
    display:none;
  }
}

@media(max-width:480px){

  .nav-wrap{
    min-height:68px;
  }

  .brand span:last-child{
    font-size:16px;
  }

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

  .menu-toggle{
    width:42px;
    height:42px;
    font-size:21px;
  }

  .menu{
    padding:16px;
    border-radius:18px;
  }

  .menu a{
    font-size:13px;
  }
}