/* Desert Bloom — Etopikk Studio */

:root {
  --cream:       #FAF6F0;
  --deep:        #2B1810;
  --terracotta:  #D4784A;
  --rose:        #C9897A;
  --olive:       #8A9B45;
  --gold:        #C9A84C;
  --sand:        #E8D5B0;
  --text-dark:   #1A0F0A;
  --text-mid:    #5C3D2E;
  --nav-height:  72px;
  --ease:        0.3s ease;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }

/* ── UTILITY ──────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--terracotta); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.btn--terracotta { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn--terracotta:hover { background: transparent; color: var(--terracotta); }
.btn--rose { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn--rose:hover { background: transparent; color: var(--rose); }
.btn--olive { background: var(--olive); color: #fff; border-color: var(--olive); }
.btn--olive:hover { background: transparent; color: var(--olive); }
.btn--outline { background: transparent; color: var(--deep); border-color: var(--deep); }
.btn--outline:hover { background: var(--deep); color: var(--cream); }

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav--scrolled {
  background: rgba(43, 24, 16, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  transition: background var(--ease);
}
.nav__logo:hover { background: rgba(255,255,255,0.2); }
.nav__logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--terracotta) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
}
.nav__cta:hover { background: var(--gold) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--ease);
}
@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(43, 24, 16, 0.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav__links.open { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(43, 24, 16, 0.78) 0%,
    rgba(43, 24, 16, 0.45) 55%,
    rgba(196, 98, 45, 0.28) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(250, 246, 240, 0.76);
  margin-bottom: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero__stores {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__store-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.1rem 1.8rem;
  border: 1px solid rgba(250, 246, 240, 0.28);
  color: var(--cream);
  min-width: 140px;
  transition: all var(--ease);
  backdrop-filter: blur(6px);
  background: rgba(250, 246, 240, 0.04);
}
.hero__store-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.hero__store-num {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  color: var(--gold);
  font-style: italic;
}
.hero__store-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 246, 240, 0.5);
  animation: bounce 2.2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ── STORES ───────────────────────────────────────────── */
.stores { background: var(--cream); }
.store-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.store-panel__media {
  position: relative;
  overflow: hidden;
}
.store-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.store-panel:hover .store-panel__media img { transform: scale(1.05); }
.store-panel__media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.store-panel:nth-child(1) .store-panel__media-overlay {
  background: linear-gradient(135deg, rgba(196,98,45,0.22), rgba(43,24,16,0.08));
}
.store-panel:nth-child(2) .store-panel__media-overlay {
  background: linear-gradient(135deg, rgba(201,137,122,0.22), rgba(43,24,16,0.08));
}
.store-panel:nth-child(3) .store-panel__media-overlay {
  background: linear-gradient(135deg, rgba(138,155,69,0.22), rgba(43,24,16,0.08));
}
.store-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
}
.store-panel:nth-child(1) .store-panel__content { background: var(--cream); }
.store-panel:nth-child(2) .store-panel__content { background: #F5EFE8; }
.store-panel:nth-child(3) .store-panel__content { background: #EEEAE4; }
.store-panel__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.store-panel__title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 1.25rem;
}
.store-panel:nth-child(1) .store-panel__title em { color: var(--terracotta); }
.store-panel:nth-child(2) .store-panel__title em { color: var(--rose); }
.store-panel:nth-child(3) .store-panel__title em { color: var(--olive); }
.store-panel__text {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 420px;
  line-height: 1.8;
}
.store-panel__features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.store-panel__features li {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.store-panel__features li::before {
  content: '—';
  position: absolute;
  left: 0;
}
.store-panel:nth-child(1) .store-panel__features li::before { color: var(--terracotta); }
.store-panel:nth-child(2) .store-panel__features li::before { color: var(--rose); }
.store-panel:nth-child(3) .store-panel__features li::before { color: var(--olive); }
@media (max-width: 900px) {
  .store-panel { grid-template-columns: 1fr; min-height: auto; }
  .store-panel:nth-child(2) .store-panel__media { order: -1; }
  .store-panel__media { height: 260px; }
  .store-panel__content { padding: 3rem 2rem; }
  .store-panel__text { max-width: 100%; }
}

/* ── ABOUT ────────────────────────────────────────────── */
.about {
  background: var(--deep);
  padding: 7rem 2rem;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about .section-label { color: var(--gold); }
.about .section-title { color: var(--cream); }
.about .section-title em { color: var(--gold); }
.about__story p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.93rem;
  margin-bottom: 1.1rem;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}
.about__pillar {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}
.about__pillar-icon {
  font-size: 1.3rem;
  color: var(--gold);
  padding-top: 0.15rem;
  font-style: normal;
  line-height: 1.3;
}
.about__pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.about__pillar p {
  color: rgba(250, 246, 240, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; gap: 3.5rem; }
}

/* ── BLOG ─────────────────────────────────────────────── */
.blog { background: var(--cream); padding: 7rem 2rem; }
.blog__inner { max-width: 1200px; margin: 0 auto; }
.blog__header { text-align: center; margin-bottom: 3.5rem; }
.blog__carousel-wrap { position: relative; padding: 0 2.5rem; }
.blog__carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.blog__carousel::-webkit-scrollbar { display: none; }
.blog-card {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  background: #fff;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--ease), box-shadow var(--ease);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(43, 24, 16, 0.13);
}
.blog-card__img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 160px;
}
.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.07); }
.blog-card__store {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
}
.blog-card--fashion .blog-card__store { background: var(--rose); }
.blog-card__body { padding: 1rem 1.1rem 1.4rem; }
.blog-card__body h3 {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.45;
}
.blog-card__body h3 a:hover { color: var(--terracotta); }
.blog-card--fashion .blog-card__body h3 a:hover { color: var(--rose); }
.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--ease);
}
.carousel-btn:hover { background: var(--terracotta); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.carousel-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: background var(--ease);
  padding: 0;
}
.carousel-dot.active { background: var(--terracotta); }
.blog__footer { display: flex; gap: 1rem; justify-content: center; }
@media (max-width: 1024px) {
  .blog-card { flex: 0 0 calc((100% - 2 * 1.25rem) / 3); }
}
@media (max-width: 768px) {
  .blog-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 480px) {
  .blog-card { flex: 0 0 100%; }
  .blog__footer { flex-direction: column; align-items: center; }
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact { background: #231209; padding: 7rem 2rem; }
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--cream); }
.contact__newsletter p {
  color: rgba(250, 246, 240, 0.6);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.newsletter-form .form-group { display: flex; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.88rem 1.25rem;
  background: rgba(250,246,240,0.06);
  border: 1px solid rgba(250,246,240,0.18);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--ease);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(250,246,240,0.35); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 0.88rem 1.4rem;
  background: var(--terracotta);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold); }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.88rem 1.25rem;
  background: rgba(250,246,240,0.06);
  border: 1px solid rgba(250,246,240,0.18);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  resize: vertical;
  transition: border-color var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(250,246,240,0.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form .btn--terracotta {
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}
.form-response {
  font-size: 0.82rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
  color: var(--gold);
}
.form-response.error { color: #e07070; }
@media (max-width: 768px) { .contact__inner { grid-template-columns: 1fr; gap: 3.5rem; } }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: #160B05; padding: 4.5rem 2rem 0; }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,246,240,0.08);
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.footer__brand-logo img { height: 52px; width: 52px; object-fit: contain; opacity: 0.85; }
.footer__brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(250,246,240,0.42);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,246,240,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,240,0.55);
  font-size: 0.82rem;
  transition: all var(--ease);
}
.footer__social a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.footer__stores h4,
.footer__contact h4 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__stores a,
.footer__contact a {
  display: block;
  font-size: 0.86rem;
  color: rgba(250,246,240,0.6);
  margin-bottom: 0.6rem;
  transition: color var(--ease);
}
.footer__stores a:hover,
.footer__contact a:hover { color: var(--cream); }
.footer__contact address {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(250,246,240,0.38);
  line-height: 1.7;
  margin-top: 0.6rem;
}
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(250,246,240,0.28);
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }

/* ── ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.24s; }
