/* ── SHARED CSS,  Sunrise Startup ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --orange: #E65100;
  /* Richer orange */
  --orange-light: #FF9800;
  --orange-pale: #FFF3E0;
  --dark: #0F0F0B;
  /* Deep near-black */
  --mid: #2D2418;
  --muted: #746B5C;
  --bg: #FDFCFB;
  --border: #E8E2D9;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.75);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── NAV ── */
nav#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 90px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav#main-nav.scrolled {
  height: 75px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: transform .3s;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

.nav-logo-text span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--orange);
  color: white;
  border: none;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.2);
}

.nav-cta:hover {
  background: #BF4300;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 7rem 10% 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open ul li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open ul li:nth-child(1) {
  transition-delay: .15s;
}

.mobile-menu.open ul li:nth-child(2) {
  transition-delay: .22s;
}

.mobile-menu.open ul li:nth-child(3) {
  transition-delay: .29s;
}

.mobile-menu.open ul li:nth-child(4) {
  transition-delay: .36s;
}

.mobile-menu.open ul li:nth-child(5) {
  transition-delay: .43s;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu ul li a i {
  font-size: 1.4rem;
  color: var(--orange);
}

.mobile-footer {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.5s ease;
}

.mobile-menu.open .mobile-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-social {
  display: flex;
  gap: 1.8rem;
  margin-top: 1.2rem;
}

.mobile-social a {
  font-size: 1.8rem;
  color: var(--mid);
  transition: color .3s;
}

.mobile-social a:hover {
  color: var(--orange);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(230, 81, 0, 0.15);
}

.btn-primary:hover {
  background: #BF4300;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: none;
  padding: .9rem 1.6rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s ease;
}

.btn-ghost:hover {
  color: var(--orange);
  background: rgba(230, 81, 0, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.2);
}

.btn-white {
  background: white;
  color: var(--orange);
  border: none;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ── SECTION UTILS ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.section-pad {
  padding: 9rem 6%;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 5rem 6%;
  }
}

.section-header {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
  background: var(--orange-pale);
  padding: .4rem 1rem;
  border-radius: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  opacity: 0.9;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--mid) 100%);
  padding: 12rem 6% 8rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(230, 81, 0, 0.2) 0%, transparent 50%);
}

.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .7);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--orange-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .2);
  font-size: .8rem;
}

.breadcrumb .current {
  color: rgba(255, 255, 255, .9);
  font-size: .85rem;
  font-weight: 500;
}

/* ── CARDS ── */
.card-premium {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--orange-light);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 7rem 6% 3rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text strong {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all .3s ease;
}

.footer-social a:hover {
  background: var(--orange);
  color: white;
  transform: rotate(10deg);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

.footer-contact-item i {
  color: var(--orange-light);
  font-size: 1.1rem;
}

.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col li a {
  text-decoration: none;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-col li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom .links {
  display: flex;
  gap: 2rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.footer-bottom a:hover {
  color: var(--orange-light);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: .15s;
}

.reveal-d2 {
  transition-delay: .3s;
}

.reveal-d3 {
  transition-delay: .45s;
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 2rem 0;
  border-radius: 50px;
}

.divider.center {
  margin: 2rem auto;
}

/* ── FORM ELEMENTS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--mid);
  padding-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: .95rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  background: white;
  transition: all .3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  background: white;
  padding: 6rem 6%;
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background: var(--dark);
  padding: 4rem 5%;
  border-radius: 30px;
  color: white;
  overflow: hidden;
  position: relative;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.newsletter-text {
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.newsletter-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  outline: none;
  transition: all .3s;
}

.newsletter-form input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn-primary {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .section-pad {
    padding: 6rem 5%;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-brand p {
    margin: 0 auto 2rem;
  }

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

  .footer-bottom .links {
    flex-direction: column;
    gap: .8rem;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }

  .page-hero {
    padding: 7rem 5% 4rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
}