: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-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-wrapper iframe {
  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;
}
