/* Anura Fashion — modern editorial layout */
:root {
  --color-bg: #070c10;
  --color-bg-soft: #0d141b;
  --color-surface: #0f1821;
  --color-surface-soft: #151f2a;
  --color-text: #f5f7fb;
  --color-muted: #9ca5b5;
  --color-accent: #f5c06b;
  --color-border: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background:
    radial-gradient(circle at top, #1e2735 0, transparent 55%),
    radial-gradient(circle at bottom, #06090f 0, transparent 60%),
    var(--color-bg);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

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

/* Layout helpers */
main {
  padding-top: 88px;
  min-height: calc(100vh - 220px);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7, 12, 16, 0.96), rgba(7, 12, 16, 0.92));
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-elevated {
  background: rgba(7, 12, 16, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(245, 192, 107, 0.8);
}

.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Generic button */
.btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 192, 107, 0.4);
  background: linear-gradient(135deg, #f1bd69, #e99b40);
  color: #1a1204;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #ffd58d, #f3a24b);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(156, 165, 181, 0.55);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(21, 31, 42, 0.9);
  box-shadow: var(--shadow-soft);
}

/* Hero */
.hero {
  padding: 4.5rem 0 5.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.55rem, 5vw, 3.6rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.hero-title span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.85rem;
  color: var(--color-muted);
}

.hero-subtitle {
  max-width: 420px;
  font-size: 0.98rem;
  color: var(--color-muted);
  margin-bottom: 1.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.hero-meta-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
}

.hero-meta-value {
  color: var(--color-text);
}

.hero-media {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #f5c06b 0, transparent 60%), #101822;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.96;
}

.hero-pill {
  position: absolute;
  inset-inline: 12%;
  bottom: 1.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: rgba(7, 12, 16, 0.88);
  border: 1px solid rgba(245, 192, 107, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-pill span {
  color: var(--color-accent);
}

.hero-orbit {
  position: absolute;
  inset: -18%;
  border-radius: 40px;
  border: 1px solid rgba(245, 192, 107, 0.18);
  opacity: 0.65;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: radial-gradient(circle at top, rgba(49, 66, 89, 0.36), transparent 65%),
    linear-gradient(to bottom, rgba(10, 15, 21, 0.9), rgba(9, 13, 19, 0.96));
  border-block: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.section-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--color-muted);
}

/* About / rich text */
.about-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--color-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.about-card {
  padding: 1.85rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(245, 192, 107, 0.08), transparent 60%),
    linear-gradient(to bottom right, rgba(18, 27, 38, 0.96), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.about-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.about-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: radial-gradient(circle at top, rgba(245, 192, 107, 0.06), transparent 60%),
    linear-gradient(to bottom, var(--color-surface), var(--color-surface-soft));
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.9);
  border-color: rgba(245, 192, 107, 0.6);
}

.product-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #131b26;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.28s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.07);
}

.product-card-info {
  padding: 1.1rem 1.35rem 1.4rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-card-price {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Collection filters */
.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.3rem;
  justify-content: center;
}

.filter-chip {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 165, 181, 0.45);
  background: rgba(12, 18, 26, 0.9);
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, #f1bd69, #e99b40);
  border-color: rgba(245, 192, 107, 0.9);
  color: #130f06;
  transform: translateY(-1px);
}

.product-card[hidden] {
  display: none;
}

/* Contact */
.contact-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.contact-wrap p {
  color: var(--color-muted);
  margin-bottom: 2.1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--color-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 15, 22, 0.9);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(245, 192, 107, 0.8);
  box-shadow: 0 0 0 1px rgba(245, 192, 107, 0.55);
  background: rgba(11, 17, 25, 1);
}

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

.form-hint {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
}

.form-message {
  margin-top: 1.5rem;
  font-size: 0.86rem;
  color: var(--color-accent);
}

.submit-btn {
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.4rem 0;
  margin-top: 4.25rem;
  background: linear-gradient(to top, rgba(4, 6, 10, 0.95), rgba(6, 9, 14, 0.96));
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.site-footer .logo {
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--color-text);
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    max-width: 440px;
    margin: 0 auto;
  }

  .hero {
    padding-bottom: 4.25rem;
  }
}

@media (max-width: 768px) {
  .site-header-inner {
    padding-inline: 1.25rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1.4rem;
  }

  .site-footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-pill {
    inset-inline: 10%;
  }
}

