/* =====================================================
   Ping Sing Global — style.css
   Palette: Quiet Luxury
   Fonts: Cormorant Garamond (display) + Jost (body)
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --cream: #F7E6CA;
  --gold-light: #E8D59E;
  --blush: #D9BBB0;
  --taupe: #AD9C8E;
  --dark: #2C2416;
  --mid: #6B5B45;
  --white: #FDFAF5;
  --navy: #1E2A3A;
  /* accent for icon/button hover */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(3rem, 8vw, 7rem);
  --max-w: 1280px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(247, 230, 202, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(173, 156, 142, 0.3);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.navbar__icon {
  display: flex;
  align-items: center;
  color: var(--taupe);
}

.navbar__icon svg {
  width: 20px;
  height: 20px;
}

.navbar__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--taupe);
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--dark);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* Burger — hidden on desktop */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  position: relative;
  height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: clamp(2rem, 7vw, 8rem);
  padding-right: clamp(2rem, 7vw, 8rem);
  overflow: hidden;
}


/* ── Hero Content (overlaid) ── */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  max-width: 660px;
  margin-top: 15rem;
  animation: fadeUp 0.9s ease both;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero__title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--mid);
}

.hero__subtitle {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--mid);
  margin-top: -0.3rem;
}

/* ── Button ── */
.btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.85rem 2.4rem;
  background: var(--taupe);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--taupe);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  border-radius: 4px;
}

.btn:hover {
  background: var(--blush);
  color: var(--dark);
  border-color: var(--blush);
}

/* ── Hero Image (full-screen background) ── */
.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: fadeIn 1.2s ease both;
}

.hero__image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.hero__image-frame:hover .hero__image {
  transform: scale(1.03);
}

/* ====================================================
   CATEGORIES
   ==================================================== */
.categories {
  background: var(--white);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.categories__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Carousel wrapper */
.categories__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.categories__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--taupe);
  background: var(--white);
  color: var(--mid);
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  z-index: 2;
}

.categories__arrow:hover {
  background: var(--taupe);
  color: var(--white);
  border-color: var(--taupe);
}

/* Scrollable track */
.categories__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.categories__track::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 clamp(110px, 16vw, 190px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid var(--gold-light);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.category-card:hover .category-card__img-wrap {
  border-color: var(--taupe);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.12);
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-card__name {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
}

/* Desktop: all cards visible, no scroll needed */
@media (min-width: 901px) {
  .categories__arrow {
    display: none;
  }
  .categories__track {
    overflow: visible;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .category-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 190px;
  }
}

@media (max-width: 900px) {
  .category-card {
    flex: 0 0 22vw;
  }
  .category-card__name {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .category-card {
    flex: 0 0 38vw;
  }
  .category-card__name {
    font-size: 1rem;
  }
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--taupe);
  color: var(--dark);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.footer__tagline,
.footer__bottom p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer__contact p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dark);
}

.footer__contact a {
  color: var(--dark);
  transition: color 0.25s;
}

.footer__contact a:hover {
  color: var(--cream);
}

.footer__social {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0.5;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(44, 36, 22, 0.6);
  border-radius: 50%;
  color: var(--dark);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.footer__social-link:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(247, 230, 202, 0.15);
}

.footer__bottom {
  border-top: 1px solid rgba(44, 36, 22, 0.2);
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ====================================================
   RESPONSIVE — Tablet (≤ 900px)
   ==================================================== */
@media (max-width: 900px) {
  .hero {
    padding-left: 2rem;
    padding-right: 2rem;
    align-items: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__social {
    justify-content: flex-start;
    grid-column: 1 / -1;
  }
}

/* ====================================================
   RESPONSIVE — Mobile (≤ 600px)
   ==================================================== */
@media (max-width: 600px) {

  /* Burger visible */
  .navbar__burger {
    display: flex;
  }

  /* Nav links hidden by default, shown when .open */
  .navbar__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(247, 230, 202, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem 2rem;
    gap: 1.4rem;
    border-bottom: 1px solid rgba(173, 156, 142, 0.3);
  }

  .navbar__links.open {
    display: flex;
  }

  .hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    align-items: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__social {
    justify-content: flex-start;
  }
}

/* ====================================================
   ABOUT US PAGE
   ==================================================== */

/* ── Hero Banner ── */
.about__hero {
  position: relative;
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
  background: var(--dark);
}

.about__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__hero-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
}

.about__hero-eyebrow {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.about__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.about__hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold-light);
  margin-top: 0.4rem;
}

/* ── Our Story ── */
.about__story {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.about__story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about__story-label {
  text-align: right;
  padding-top: 0.3rem;
  border-top: 1px solid var(--blush);
}

.about__story-label span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--taupe);
  font-style: italic;
}

.about__story-body {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  border-top: 1px solid var(--blush);
  padding-top: 0.8rem;
}

.about__story-body p {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}

.about__quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--dark);
  border-left: 3px solid var(--gold-light);
  padding-left: 1.4rem;
  margin: 0.6rem 0;
  line-height: 1.5;
}

/* ── Intro ── */
.about__intro {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}

.about__intro-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about__intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ── Mission & Values ── */
.about__mission {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.about__mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.about__mission-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 1.2rem;
}

.about__mission-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--taupe);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.mission-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 2rem 1.8rem;
  border: 2px solid var(--blush);
}

.mission-value__icon {
  color: var(--taupe);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.mission-value__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.mission-value__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: #1a1108;
  margin-bottom: 0.5rem;
}

.mission-value__desc {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #5a4e45;
  line-height: 1.65;
}

/* ── Where We Serve ── */
.about__serve {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  background: var(--white);
}

.about__serve-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.3rem);
}

.about__serve-left {
  flex: 0 0 160px;
}

.about__serve-right {
  flex: 1;
}

.about__serve-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 500;
  white-space: nowrap;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.about__serve-sub {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.7;
}

.about__serve-img {
  width: 100%;
  min-height: 340px;
  height: auto;
  display: block;
  border-radius: 2px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 768px) {
  .about__serve-inner {
    flex-direction: column;
  }
  .about__serve-left {
    flex: none;
  }
  .about__story-inner {
    grid-template-columns: 1fr;
  }
  .about__story-label {
    text-align: left;
    border-top: none;
    border-bottom: 1px solid var(--blush);
    padding-bottom: 0.6rem;
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .about__hero {
    height: 55vh;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   PRODUCTS PAGE
   ==================================================== */

/* ── Products layout (mobile-first) ── */

.products-page {
  padding-top: var(--nav-h);
}

/* Default = mobile: stacked column */
.products-layout {
  display: flex;
  flex-direction: column;
}

.cat-sidebar {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

/* Dropdown toggle: visible by default (mobile) */
.cat-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cream);
  border: none;
  border-bottom: 1px solid var(--blush);
  cursor: pointer;
}

.cat-dropdown-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.cat-dropdown-chevron {
  transition: transform 0.25s;
}

.cat-dropdown-chevron.open {
  transform: rotate(180deg);
}

/* Nav: hidden by default on mobile, toggled open via JS */
.cat-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  border-top: 1px solid var(--blush);
}

.cat-nav.open {
  display: flex;
}

.cat-nav__link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 1.3rem 1.8rem;
  border-left: 3px solid transparent;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  display: block;
}

.cat-nav__link:hover,
.cat-nav__link.active {
  color: var(--dark);
  border-left-color: var(--taupe);
  background: var(--cream);
}

.products-content {
  flex: 1;
  min-width: 0;
}

/* Product sections */
.prod-section {
  padding: 1.5rem 1.2rem;
}

/* ── Desktop overrides (≥769px) ── */
@media (min-width: 769px) {
  .products-layout {
    flex-direction: row;
    align-items: flex-start;
    min-height: 100vh;
  }

  .cat-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: var(--nav-h);
    align-self: flex-start;
    border-bottom: none;
  }

  /* Hide toggle on desktop */
  .cat-dropdown-toggle {
    display: none;
  }

  /* Always show nav on desktop */
  .cat-nav {
    display: flex !important;
    padding: 2rem 0;
    border-top: none;
  }

  .cat-nav__link {
    font-size: 1rem;
    padding: 1.1rem 1.8rem;
    white-space: normal;
  }

  .prod-section {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  }
}

.prod-section:last-child {
  border-bottom: none;
}

.prod-section__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.prod-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
}

.prod-section__line {
  flex: 1;
  height: 1px;
  background: var(--blush);
}

/* Product grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.8rem;
}

/* Product card */
.prod-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.prod-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border: 1px solid var(--blush);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-card__img[src=""] {
  display: none;
}

.prod-card__name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-align: center;
}

/* Special Customize link in cat-nav */
.cat-nav__link--special {
  font-weight: 500;
  margin-top: 1.5rem;
  border-top: 1px solid var(--blush);
  background: linear-gradient(90deg, #b8860b, #ffd700, #ff8c00, #ffd700, #b8860b);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.5s linear infinite;
}

.cat-nav__link--special:hover {
  border-left-color: #c8a96e;
  animation-duration: 1s;
  color: var(--dark);
  -webkit-text-fill-color: var(--dark);
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ====================================================
   CUSTOMIZE PAGE
   ==================================================== */

.customize-page {
  padding-top: var(--nav-h);
  min-height: 80vh;
}

.customize-back {
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem) 0;
}

.customize-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.25s;
}

.customize-back__btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.customize-back__btn:hover {
  color: var(--dark);
}

.customize-photo {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.customize-photo__img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 2px;
  display: block;
}

.customize-content {
  max-width: 680px;
  margin: 3rem auto 5rem;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.customize-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  white-space: nowrap;
}

.customize-desc {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.modal__close:hover { color: var(--dark); }

.modal__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.modal__sub {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 1.8rem;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.modal__error {
  font-size: 1.35rem;
  color: #b94a48;
  margin-top: 0.3rem;
}

.modal__success {
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--mid);
  text-align: center;
  padding: 0.8rem;
  background: var(--cream);
  border-radius: 2px;
}

.modal__submit {
  margin-top: 0.5rem;
  width: 100%;
}

/* Shared form-group (modal) */
.modal__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal__form label {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.modal__form input,
.modal__form select,
.modal__form textarea {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 2px;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.modal__form input:focus,
.modal__form select:focus,
.modal__form textarea:focus {
  border-color: var(--taupe);
}

.modal__form textarea {
  resize: vertical;
}

/* =====================================================
   Ping Sing Global — contact.css
   ===================================================== */

/* ── Page layout: two-column split ── */
.contact-page {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

/* ====================================================
   LEFT PANEL — Info
   ==================================================== */
.contact-info {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative warm gradient blob */
.contact-info::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 213, 158, 0.12) 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
  pointer-events: none;
}

.contact-info__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  animation: fadeUp 0.8s ease both;
}

.contact-info__eyebrow {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}

.contact-info__title em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-info__desc {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--blush);
  max-width: 34ch;
}

.contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1.7;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  margin-top: 2px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 16px;
  height: 16px;
}

.contact-info__item a {
  color: var(--blush);
  transition: color 0.25s;
}

.contact-info__item a:hover {
  color: var(--gold-light);
}

.contact-info__deco {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-light), transparent);
  margin-top: 0.5rem;
}

/* ====================================================
   RIGHT PANEL — Form
   ==================================================== */
.contact-form-wrap {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}

.contact-form-card {
  width: 100%;
  max-width: 600px;
  animation: fadeUp 0.9s ease 0.15s both;
}

/* ── Form rows ── */
.form-row {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.form-row--two {
  flex-direction: row;
}

.form-row--action {
  justify-content: flex-end;
  margin-top: 0.4rem;
}

/* ── Form groups ── */
.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
}

label {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.required-star {
  color: #b55a3a;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: var(--white);
  border: 1px solid rgba(173, 156, 142, 0.45);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--taupe);
  opacity: 0.65;
}

input:focus,
textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(173, 156, 142, 0.15);
}

/* Error state */
input.input--error {
  border-color: #b55a3a;
  box-shadow: 0 0 0 3px rgba(181, 90, 58, 0.1);
}



/* ── Success banner ── */
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(173, 156, 142, 0.12);
  border: 1px solid rgba(173, 156, 142, 0.35);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--mid);
}

.form-success svg {
  width: 18px;
  height: 18px;
  color: var(--taupe);
  flex-shrink: 0;
}

/* ====================================================
   RESPONSIVE — Tablet (≤ 860px)
   ==================================================== */
@media (max-width: 860px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 0;
  }

  .contact-info__inner {
    padding: 3.5rem 2rem;
  }

  .contact-info__title {
    font-size: 2.8rem;
  }
}

/* ====================================================
   RESPONSIVE — Mobile (≤ 600px)
   ==================================================== */
@media (max-width: 600px) {
  .form-row--two {
    flex-direction: column;
    gap: 1.4rem;
  }

  .contact-form-wrap {
    padding: 2.5rem 1.5rem;
  }

  .form-row--action {
    justify-content: stretch;
  }

  .form-row--action .btn {
    width: 100%;
    text-align: center;
  }
}