@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --color-bg: #050816;
  --color-card: #101828;
  --color-accent: #ffb400;
  --color-accent-soft: rgba(255, 180, 0, 0.1);
  --color-primary: #2445ff;
  --color-text: #f9fafb;
  --color-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
  --max-width: 1120px;
  --transition-fast: 0.18s ease-out;
  --nav-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 55%);
  color: var(--color-text);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-weight: 800;
  letter-spacing: 0.07em;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-accent);
}

.logo-sub {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

/* Nav */
.nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.16);
  color: var(--color-text);
  transform: translateY(-1px);
}

.nav-link.active {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-copy {
  color: var(--color-muted);
  max-width: 30rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Hero card */
.hero-card {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.32), rgba(15, 23, 42, 0.95));
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.feature-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Strip */
.strip {
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.9);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Preview & gallery */
.preview,
.gallery {
  padding: 3rem 0;
}

.preview h2,
.gallery h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-copy {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Product card order button tweaks */
.product-card .btn {
  margin-top: 0.75rem;
  width: 100%;
}

.btn.sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* Placeholder images (you will replace with real images) */
.card-image {
  width: 100%;
  border-radius: 0.8rem;
  display: block;
}

.placeholder {
  height: 180px;
  background-image: linear-gradient(135deg, rgba(55, 65, 81, 0.5), rgba(15, 23, 42, 0.9));
  position: relative;
  overflow: hidden;
}

.placeholder::after {
  content: "Product image";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.6rem 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(209, 213, 219, 0.9);
}

/* Small variations so Copilot can style them differently later if needed */
.placeholder.suits::after { content: "Suits"; }
.placeholder.shoes::after { content: "Shoes"; }
.placeholder.ladies::after { content: "Ladies' Wear"; }
.placeholder.accessories::after { content: "Accessories"; }

.center-cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* Page hero */
.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.page-hero h1 {
  margin-bottom: 0.25rem;
}

/* Contact */
.contact-section {
  padding: 2.5rem 0 3rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.45rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  color: var(--color-text);
  padding: 0.55rem 0.75rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border var(--transition-fast), color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-accent), #f97316);
  color: #111827;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.5);
}

.btn.outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--color-text);
  background: transparent;
}

.btn.outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

/* Ensure controls inherit Inter for consistency */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.2rem 0 1.6rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.credit {
  color: var(--color-accent);
}

/* Responsive */
@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

@media (max-width: 719px) {
  .nav {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
