:root {
  --brand-1: #0f172a;      /* deep navy */
  --accent: #b88a52;       /* warm gold */
  --muted: #6b7280;
  --max: 1200px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--brand-1);
  background: #fff;
  line-height: 1.45;
}

body.waitlist-open {
  overflow: hidden;
}

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

/* Waitlist Splash Overlay */
.waitlist-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000; /* above navbar (1000) and newsletter (10000) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.waitlist-overlay[hidden] {
  display: none;
}

.waitlist-card {
  width: min(520px, 100%);
  border-radius: 22px;
  padding: 36px 34px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 250, 0.96) 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(184, 138, 82, 0.28);
  text-align: left;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  background: rgba(184, 138, 82, 0.16);
  border: 1px solid rgba(184, 138, 82, 0.35);
  margin-bottom: 14px;
}

.waitlist-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 10px 0;
  color: #0f172a;
}

.waitlist-subtitle {
  margin: 0 0 18px 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

.waitlist-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid rgba(15, 23, 42, 0.10);
  outline: none;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-input:focus {
  border-color: rgba(184, 138, 82, 0.85);
  box-shadow: 0 0 0 4px rgba(184, 138, 82, 0.18);
}

.waitlist-submit-btn {
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.waitlist-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.32);
}

.waitlist-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist-privacy {
  margin: 4px 0 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.waitlist-success {
  margin: 16px 0 0 0;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(184, 138, 82, 0.35);
  background: rgba(184, 138, 82, 0.10);
  color: #0f172a;
  font-weight: 600;
}

.waitlist-redirect {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.waitlist-redirect-title {
  margin: 0 0 6px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #0f172a;
}

.waitlist-redirect-subtitle {
  margin: 0 0 14px 0;
  color: #475569;
  font-size: 0.95rem;
}

.waitlist-redirect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.waitlist-redirect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.waitlist-redirect-btn i {
  color: var(--accent);
  font-size: 18px;
}

.waitlist-redirect-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 138, 82, 0.5);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eef0f3;
  z-index: 5;
}

.head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand__name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  padding: 8px 6px;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  z-index: 10;
}

.hero-text h1 {
  font-size: 36px;
  margin: 0;
}

.hero-text p {
  font-size: 18px;
  margin: 5px 0 0;
}

/* Navbar Floating + Sticky */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.2s ease;
}

.logo:hover {
  color: #c5a46d;
  transform: scale(1.1);
}

.logo i {
  font-size: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #c5a46d; /* gold hover */
}

/* Navbar Dropdown */
.navbar .dropdown {
  position: relative;
  display: inline-block;
}

.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 150px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-menu li a {
  color: #111;
  display: block;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
}

.navbar .dropdown-menu li a:hover {
  background: #f4f4f4;
  color: #000;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* About Section */
.about {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.about .divider {
  width: 60px;
  height: 3px;
  background: #000;
  margin: 0 auto 25px auto;
}

.about .lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.feature {
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.feature h4 {
  margin: 0 0 6px 0;
}

/* Products */
#shop {
  padding: 28px 0;
}

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

.card {
  border: 1px solid #eef0f3;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px 14px;
}

.price {
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}

/* Shop Section */
.shop {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.shop h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.shop-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

.shop-slider {
  display: flex;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.shop-item {
  display: block;
  min-width: 250px;
  max-width: 250px;
  flex-shrink: 0;
  background: #f8f8f8;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shop-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.shop-item h3,
.shop-item p {
  margin: 5px 0;
}

.shop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.shop-arrow.left {
  left: 10px;
}

.shop-arrow.right {
  right: 10px;
}

.shop-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Made-to-Measure Section */
.measure {
  background: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.measure-container {
  max-width: 800px;
  margin: 0 auto;
}

.measure h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111;
}

.measure .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.measure-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.measure-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

.measure-link {
  display: inline-block;
  text-decoration: none;
}

.measure-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.measure-form input,
.measure-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.measure-form input:focus,
.measure-form textarea:focus {
  border-color: #111;
}

.form-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-align: left;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-start;
}

.options label {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.options input {
  display: none;
}

.options label:hover {
  border-color: #111;
}

.options input:checked + span,
.options input:checked ~ label {
  background: #111;
  color: #fff;
  border-color: #111;
}

.measure-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #333;
}

.submit-btn:disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.submit-btn:disabled:hover {
  background: #666;
}

.confirmation {
  display: none;
  margin-top: 20px;
  color: #008000;
  font-weight: 600;
  padding: 15px;
  background: #f0f9f0;
  border-radius: 6px;
  border: 1px solid #008000;
}

/* Our Story Section */
.our-story {
  padding: 80px 20px;
  background-color: #fff;
}

.our-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.story-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  font-family: 'Playfair Display', serif;
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.story-text .divider {
  width: 60px;
  height: 3px;
  background: #000;
  margin-bottom: 20px;
}

.story-text .lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.story-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-link {
  display: inline-block;
  text-decoration: none;
}

.contact-form {
  margin-bottom: 40px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: none;
  width: 100%;
}

.contact-form .submit-btn {
  background: black;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
  background: #333;
}

.direct-contact {
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #444;
}

.direct-contact p {
  margin: 8px 0;
}

.direct-contact .social-icons a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  margin: 0 5px;
}

.direct-contact .social-icons a:hover {
  text-decoration: underline;
}

.return-policy {
  font-size: 0.9rem;
  color: #555;
  margin-top: 20px;
}

.return-policy h3 {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

/* Footer Styling */
.footer {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.icon-row a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.icon-row a:hover {
  color: #c5a880;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  color: #000;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  text-align: left;
  position: relative;
}

.modal .close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

/* Sections */
section {
  scroll-margin-top: 80px;
}

footer {
  border-top: 1px solid #eef0f3;
  padding: 22px 0;
  color: var(--muted);
  text-align: center;
  margin-top: 28px;
}

/* Newsletter Popup Modal */
.newsletter-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.newsletter-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-modal-content {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  margin: auto;
  padding: 0;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  overflow: hidden;
}

.newsletter-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #666;
  font-size: 32px;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.newsletter-close:hover {
  color: #000;
  transform: rotate(90deg);
}

.newsletter-content {
  padding: 50px 40px 40px;
  text-align: center;
}

.newsletter-icon {
  font-size: 48px;
  color: #b88a52;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  color: #0f172a;
  font-weight: 700;
}

.newsletter-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-benefits {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
}

.newsletter-form {
  margin-top: 25px;
}

.newsletter-name-group {
  margin-bottom: 15px;
}

.newsletter-name-input {
  width: 100%;
  max-width: 100%;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
  align-items: stretch;
}

.newsletter-input {
  flex: 0 1 auto;
  min-width: 200px;
  max-width: 280px;
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.newsletter-input:focus {
  border-color: #b88a52;
}

.newsletter-submit-btn {
  flex-shrink: 0;
  padding: 14px 30px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

.newsletter-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.newsletter-success {
  color: #008000;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
  padding: 15px;
  background: #f0f9f0;
  border-radius: 10px;
  border: 1px solid #008000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

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

  .t1 {
    font-size: 32px;
  }

  .hero-img {
    height: 360px;
  }
}

@media (max-width: 600px) {
  #products-grid {
    grid-template-columns: 1fr;
  }

  .t1 {
    font-size: 28px;
  }

  .form-row {
    flex-direction: column;
  }

  .newsletter-modal-content {
    width: 95%;
    max-width: none;
  }

  .newsletter-content {
    padding: 40px 25px 30px;
  }

  .newsletter-content h2 {
    font-size: 1.8rem;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

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

  .waitlist-card {
    padding: 30px 22px 22px;
  }

  .waitlist-title {
    font-size: 1.8rem;
  }
}
