:root {
  --cream: #f5e6d3;
  --warm-peach: #f0d9c0;
  --dark-brown: #3d1f0d;
  --medium-brown: #6b3a2a;
  --copper: #b5651d;
  --dark-maroon: #7a2e2e;
  --rose-brown: #b07a6e;
  --dark-bg: #1a1008;
  --charcoal: #1c1c1c;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --text-dark: #2c1a0e;
  --text-mid: #5a3825;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(245, 230, 211, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181, 101, 29, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f1c40f, #27ae60, #2980b9, #8e44ad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: white;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark-brown);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-brown);
  padding: 7px 16px;
  border-radius: 20px;
  border: 2px solid var(--dark-brown);
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--dark-brown);
  color: var(--cream);
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

/* decorative floral corner */
#home::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M180 20 Q200 60 160 80 Q200 100 170 130 Q150 160 120 140' stroke='%23c0392b' fill='none' stroke-width='3' stroke-dasharray='8,4'/%3E%3Cpath d='M170 10 Q190 50 155 75 Q185 90 160 120' stroke='%2327ae60' fill='none' stroke-width='2' stroke-dasharray='6,4'/%3E%3Ccircle cx='185' cy='25' r='5' fill='%23c0392b'/%3E%3Ccircle cx='165' cy='55' r='4' fill='%2327ae60'/%3E%3Ccircle cx='175' cy='90' r='5' fill='%23e67e22'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.7;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}

.hero-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(#c0392b 0deg 60deg, #e67e22 60deg 120deg, #f1c40f 120deg 180deg, #27ae60 180deg 240deg, #2980b9 240deg 300deg, #8e44ad 300deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-logo-circle::after {
  content: 'THE\ACRAFTBAZAAR';
  white-space: pre;
  font-size: 8px;
  font-weight: 900;
  color: white;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark-brown);
  letter-spacing: 2px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  text-align: center;
  color: var(--dark-brown);
  line-height: 1.1;
  max-width: 700px;
  animation: fadeUp 0.9s 0.1s ease both;
  margin-bottom: 28px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1s 0.2s ease both;
  margin-bottom: 48px;
}

.btn-join {
  background: #c0392b;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.hero-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-brown);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

/* hero image grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  width: 90%;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-grid img,
.hero-grid .img-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
}

.img-placeholder {
  background: linear-gradient(135deg, #e8d5c0, #d4b896);
  color: var(--medium-brown);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  min-height: 220px;
}

/* about tagline */
.hero-about {
  max-width: 660px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.6;
  padding: 32px 24px;
  animation: fadeUp 1s 0.4s ease both;
}

/* nav pills row */
.hero-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 28px 24px 16px;
  animation: fadeUp 1s 0.5s ease both;
}

.pill {
  padding: 9px 22px;
  border-radius: 24px;
  border: 2px solid var(--dark-maroon);
  background: transparent;
  color: var(--dark-maroon);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.pill:hover,
.pill.filled {
  background: var(--dark-maroon);
  color: var(--cream);
}

/* decorative zig-zag divider */
.zigzag {
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(-45deg,
      var(--gold) 0px,
      var(--gold) 6px,
      transparent 6px,
      transparent 12px);
  opacity: 0.5;
  margin: 8px 0;
}

/* ── NEW ARRIVALS ── */
#products {
  background: #8b3a3a;
  padding: 70px 48px;
  position: relative;
}

.arrivals-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.arrivals-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.95;
}

.arrivals-left h2 span {
  display: block;
  font-size: clamp(70px, 11vw, 130px);
}

.arrivals-left .sub-list {
  margin-top: 24px;
  list-style: none;
}

.arrivals-left .sub-list li {
  font-size: 17px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.5px;
  padding: 3px 0;
  text-transform: uppercase;
}

.arrivals-zigzag {
  width: 200px;
  height: 12px;
  background: repeating-linear-gradient(-45deg,
      var(--gold) 0px,
      var(--gold) 4px,
      transparent 4px,
      transparent 8px);
  margin: 16px 0;
  opacity: 0.8;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.arrivals-grid .img-placeholder {
  background: linear-gradient(135deg, #c8a882, #a07850);
  position: relative;
  min-height: 180px;
  border-radius: 6px;
}

.arrivals-grid .img-placeholder span {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 6px;
  text-transform: uppercase;
}

.btn-order {
  display: inline-block;
  margin-top: 32px;
  border: 2px solid var(--cream);
  color: var(--cream);
  background: transparent;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.btn-order:hover {
  background: var(--cream);
  color: #8b3a3a;
  text-decoration: none;
}

/* ── ABOUT / EMPOWERING ── */
#about {
  background: var(--charcoal);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '✕✕✕✕✕✕✕✕✕✕';
  position: absolute;
  top: 16px;
  right: 40px;
  font-size: 18px;
  color: #e74c3c;
  letter-spacing: 4px;
  opacity: 0.7;
}

#about::after {
  content: '✕✕✕✕✕✕✕✕✕✕';
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #27ae60;
  letter-spacing: 4px;
  opacity: 0.6;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-left p {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-img-placeholder {
  background: linear-gradient(135deg, #3a3a3a, #555);
  border-radius: 10px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  font-weight: 600;
}

.about-quote-box {
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 20px 28px;
  position: relative;
}

.about-quote-box::before,
.about-quote-box::after {
  content: '❧';
  color: var(--gold);
  font-size: 20px;
  position: absolute;
}

.about-quote-box::before {
  top: 12px;
  left: -12px;
}

.about-quote-box::after {
  bottom: 12px;
  right: -12px;
}

.about-quote-box p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

/* ── VISION ── */
.vs-section {
  background: #fdf8f2;
  padding: 80px 40px;
  font-family: sans-serif;
}

.vs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a6a30;
  margin-bottom: 16px;
}

.vs-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #c9a84c;
  border-radius: 2px;
}

.vs-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  color: #3a1f14;
  line-height: 1.12;
  margin: 0 0 28px;
}

.vs-divider {
  width: 56px;
  height: 3px;
  background: #c9a84c;
  border-radius: 3px;
  margin-bottom: 28px;
}

.vs-left p {
  font-size: 15px;
  color: #5c3d2a;
  line-height: 1.8;
  margin: 0 0 18px;
  font-weight: 400;
}

.vs-left p:last-child {
  margin-bottom: 0;
}

.vs-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8ddd0;
}

.vs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vs-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e8ddd0;
  color: #9a7a62;
  font-size: 13px;
  gap: 8px;
}

.vs-callout {
  margin-top: 20px;
  background: #3a1f14;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.vs-callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.vs-callout p {
  font-size: 14px;
  color: #e8d5c0;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 720px) {
  .vs-section {
    padding: 52px 20px;
  }

  .vs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vs-left h2 {
    font-size: 36px;
  }

  .vs-callout {
    padding: 20px;
  }
}


/* ── CRAFTS ── */
.cr-section {
  background: #1e1e1e;
  padding: 80px 40px;
  font-family: sans-serif;
}

.cr-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
}

.cr-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  margin: 0;
}

.cr-header h2 span {
  color: #c9a84c;
}

.cr-badge {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.cr-photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.cr-photo-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #2e2a26;
}

.cr-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cr-photo-item:hover img {
  transform: scale(1.05);
}

.cr-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin-bottom: 48px;
}

.cr-list-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 32px;
  align-items: center;
}

.cr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cr-list li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.cr-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a84c;
  flex-shrink: 0;
}

.cr-list li:last-child {
  border-bottom: none;
}

.cr-list-right li {
  flex-direction: row-reverse;
}

.cr-list-right li {
  text-align: right;
}

.cr-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cr-pot-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.cr-dots {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.cr-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  display: block;
}

@media (max-width: 900px) {
  .cr-photo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cr-list-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cr-center-col {
    display: none;
  }

  .cr-list-right li {
    flex-direction: row;
    text-align: left;
  }

  .cr-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .cr-section {
    padding: 52px 20px;
  }

  .cr-photo-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cr-header h2 {
    font-size: 38px;
  }
}


/* ── TEAMS ── */
.t-section {
  background: #f5ede8;
  padding: 80px 40px;
  font-family: 'Georgia', serif;
}

.t-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.t-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  color: #3a1f14;
  margin: 0 0 20px;
  font-weight: 700;
}

.t-accent-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 32px;
}

.t-accent-bar span {
  height: 4px;
  border-radius: 4px;
}

.t-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3a1f14;
  color: #f5ede8;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.t-tagline {
  font-family: sans-serif;
  font-size: 15px;
  color: #7a5040;
  line-height: 1.7;
  margin: 0;
}

.t-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-dept {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(58, 31, 20, 0.1);
  transition: box-shadow 0.2s;
}

.t-dept:hover {
  box-shadow: 0 4px 20px rgba(58, 31, 20, 0.1);
}

.t-dept-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.t-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.t-dept h4 {
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #3a1f14;
  margin: 0;
  letter-spacing: 0.01em;
}

.t-dept p {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #6b4a3a;
  margin: 0;
}

.t-members-card {
  background: #3a1f14;
  border-radius: 16px;
  padding: 28px 28px;
  margin-top: 4px;
}

.t-members-card h4 {
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8948a;
  margin: 0 0 20px;
}

.t-member-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.t-member-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  color: #3a1f14;
}

.t-member-info {
  flex: 1;
}

.t-member-name {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #f5ede8;
  margin: 0 0 2px;
}

.t-member-role {
  font-family: sans-serif;
  font-size: 12px;
  color: #b8948a;
  margin: 0;
}

@media (max-width: 720px) {
  .t-section {
    padding: 52px 20px;
  }

  .t-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .t-left h2 {
    font-size: 38px;
  }

  .t-members-card {
    padding: 22px 20px;
  }
}

.t-member-row {
  text-decoration: none;
  color: inherit;
}

/* ── CONTACT ── */
#contact {
  background: var(--charcoal);
  padding: 80px 48px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
}

.contact-btn {
  display: inline-block;
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s;
  text-decoration: none;
}

.contact-btn:hover {
  background: white;
  color: var(--charcoal);
}

.contact-center .img-placeholder {
  background: linear-gradient(160deg, #2c3e50, #4a5568);
  min-height: 340px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 600;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#c0392b 0deg 60deg, #e67e22 60deg 120deg, #f1c40f 120deg 180deg, #27ae60 180deg 240deg, #2980b9 240deg 300deg, #8e44ad 300deg 360deg);
  margin-bottom: 8px;
}

.contact-location h4 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.contact-location p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-email {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  word-break: break-all;
}

.social-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.15);
}

.social-icon.fb {
  background: #1877f2;
  color: white;
}

.social-icon.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-icon.wa {
  background: #25d366;
  color: white;
}

.contact-footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.social-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-email {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.contact-email:hover {
  text-decoration: underline;
}

/* ── FOOTER STRIP ── */
.footer-strip {
  background: #c0392b;
  height: 12px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .arrivals-inner,
  .about-inner,
  .vision-inner,
  .beapart-top,
  .beapart-bottom-inner,
  .crafts-list-row,
  .team-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .crafts-photo-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 50px 24px !important;
  }

  .beapart-top {
    padding: 50px 24px !important;
  }

  .beapart-bottom {
    padding: 40px 24px !important;
  }
}

/* ========================================
   MOBILE HAMBURGER MENU
======================================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--dark-brown);
  cursor: pointer;
}

/* ========================================
   MOBILE RESPONSIVE NAVIGATION
======================================== */

@media (max-width: 900px) {

  nav {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
    z-index: 200;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    background: var(--cream);
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 220px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }
}

.nav-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hero-logo-circle {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.vision-image {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.hero-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ── BE A PART ── */

#beapart {
  background: #4a2410;
  position: relative;
  overflow: hidden;
}

.beapart-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.beapart-top-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beapart-top-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.beapart-top-left p {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 560px;
}

.beapart-img-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 260px 1fr;
  gap: 18px;
  height: 100%;
}

.beapart-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.beapart-img.tall {
  grid-row: span 2;
  min-height: 560px;
}

.beapart-text-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beapart-text-box p {
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
}

.beapart-bottom {
  background: var(--warm-peach);
  padding: 70px 40px;
}

.beapart-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--dark-brown);
  text-align: left;
}

.why-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-box ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-brown);
  text-align: left;
}

.why-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper);
  font-size: 20px;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--dark-brown);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.connect-btn:hover {
  transform: translateY(-2px);
}

/* ── BE A PART ── */

.beapart-connect-side {
  height: 100%;
}

.beapart-connect-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

@media(max-width:900px) {

  .beapart-top,
  .beapart-bottom-inner {
    grid-template-columns: 1fr;
  }

  .beapart-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .beapart-img.tall {
    grid-row: auto;
    min-height: 360px;
  }

  .beapart-img {
    min-height: 260px;
  }

  .beapart-connect-img {
    min-height: 320px;
  }

  .beapart-top,
  .beapart-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .why-box {
    padding: 28px;
  }
}

.contact-image {
  width: 100%;
  min-height: 380px;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}