:root {
  --brand-coral: #ff6b4a;
  --ink: #1f2933;
  --muted: #6b7280;
  --bg: #fffaf5;
  --radius: 18px;
  --header-radius: 60px;
  --card-shadow: 0 20px 50px rgba(0,0,0,0.06);
  --glass: rgba(255,255,255,0.55);
}

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

body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(to bottom, #fff6ef, #fffaf5);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

/* HEADER */
.header-wrapper {
  width: 100%;
  background: white;
  border-radius: var(--header-radius);
  box-shadow: var(--card-shadow);
  padding: 18px 36px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 42px;
  width: auto;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: 0.2s;
}

nav a:hover { color: var(--brand-coral); }

nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-coral);
  transition: width 0.2s ease-out;
  border-radius: 999px;
}

nav a:hover::after { width: 100%; }

/* SCROLL OFFSET */
.section-offset {
  scroll-margin-top: 40px;
}

/* HERO */
.hero {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero h1 span { color: var(--brand-coral); }

.hero p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
}

/* VIDEO BUTTON */
.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  background: white;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.video-btn:hover {
  transform: translateY(-2px);
  background: var(--brand-coral);
  border-color: var(--brand-coral);
  color: white;
  box-shadow: 0 8px 25px rgba(255,107,74,0.25);
}

.video-btn svg {
  transition: transform 0.2s;
}

.video-btn:hover svg {
  transform: scale(1.1);
}

/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* VIDEO TABS */
.video-tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.video-tab {
  flex: 1;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.video-tab img {
  height: 24px;
  width: auto;
}

.video-tab:hover {
  opacity: 0.7;
  background: rgba(0,0,0,0.02);
  transform: none;
  box-shadow: none;
}

.video-tab.active {
  opacity: 1;
  border-bottom-color: var(--brand-coral);
  background: rgba(255,107,74,0.04);
  transform: none;
  box-shadow: none;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* PRODUCTS TITLE */
.products-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}

/* PRODUCT GRID */
.suite-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px auto 90px;
  max-width: 1200px;
}

.suite-item {
  flex: 0 1 calc(25% - 15px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
  text-decoration: none !important;
  color: inherit !important;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
}

@media (max-width: 1000px) {
  .suite-item {
    flex: 0 1 calc(33.333% - 14px);
  }
}

@media (max-width: 750px) {
  .suite-item {
    flex: 0 1 calc(50% - 10px);
  }
}

@media (max-width: 500px) {
  .suite-item {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.suite-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-coral);
  box-shadow: 0 8px 30px rgba(255,107,74,0.12);
}

.suite-item img {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.width-180 {
  width: 180px !important;
  height: auto;
  margin-bottom: 16px;
}

.width-200 {
  width: 200px !important;
  height: auto;
  margin-bottom: 16px;
}

.suite-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* CUSTOM SOLUTIONS */
.custom-section {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 50px 42px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #fff6ef 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,107,74,0.15);
}

.custom-section h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--ink);
}

.custom-section p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.custom-section p:last-child {
  margin-bottom: 0;
}

.custom-section strong {
  color: var(--ink);
}

.custom-section .custom-cta {
  margin-top: 28px;
  font-size: 18px;
}

.custom-section .custom-cta a {
  text-decoration: none;
}

.custom-section .custom-cta strong {
  color: var(--brand-coral);
}

/* CONTACT */
.contact-section {
  max-width: 720px;
  margin: 80px auto 0;
  padding: 40px 38px 50px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255,255,255,0.35);
}

.contact-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--ink);
}

form { display: grid; gap: 22px; margin-top: 18px; }

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  background: rgba(255,255,255,0.85);
}

input:focus, textarea:focus {
  border-color: var(--brand-coral);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,107,74,0.25);
}

textarea { height: 150px; resize: vertical; }

button {
  padding: 16px;
  background: var(--brand-coral);
  color: white;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

button:hover {
  background: #e2553a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,74,0.35);
}

/* FOOTER */
footer {
  margin-top: 90px;
  padding-top: 30px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

footer a {
  color: var(--brand-coral);
  font-weight: 600;
  text-decoration: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* COMING SOON BADGE */
.suite-item.coming-soon {
  position: relative;
  cursor: default;
  opacity: 0.7;
}

.suite-item.coming-soon:hover {
  transform: none;
  border-color: rgba(0,0,0,0.08);
  box-shadow: none;
}

.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-coral);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  .header-wrapper {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  header {
    flex: 1;
  }

  nav {
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, padding-bottom 0.3s ease;
    margin-top: 0;
  }

  nav.active {
    max-height: 300px;
    margin-top: 16px;
    padding-bottom: 10px;
  }

  nav a {
    padding: 14px 8px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  nav a:hover {
    color: var(--brand-coral);
  }

  nav a::after {
    display: none;
  }

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

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

  .products-title {
    font-size: 26px;
  }

  .custom-section {
    padding: 32px 24px;
  }

  .custom-section h2 {
    font-size: 26px;
  }

  .contact-section {
    padding: 32px 24px;
  }

  .contact-section h2 {
    font-size: 26px;
  }
}


/* --- HERO badge + CTAs --- */
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--brand-coral);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background: var(--brand-coral);
  color: #fff;
  border: none;
}

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

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  color: var(--brand-coral);
  border-color: var(--brand-coral);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}
