/* ============================================================
   GOLDWIZY TRADING LIMITED — Warm Editorial Magazine Style
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #faf6f0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --cream: #faf6f0;
  --cream-dark: #f0e8dd;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --terracotta: #d95d39;
  --terracotta-dark: #b84a2c;
  --terracotta-light: #e8856a;
  --brown: #3d2914;
  --text-body: #555;
  --text-muted: #888;
  --border: #e8ddd0;
  --max-w: 1280px;
  --section-py: 120px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.text-accent { color: var(--terracotta); }
.text-accent-light { color: var(--terracotta-light); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-py) 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 24px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.75;
}

.section-header { margin-bottom: 80px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 93, 57, 0.3);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-block { width: 100%; justify-content: center; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(26,26,26,0.06);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo-name { color: var(--charcoal); }
.nav-logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo-sub { color: var(--text-muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--charcoal-light); }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  padding: 12px 26px;
  background: var(--terracotta);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  padding: 100px 40px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link {
  color: var(--charcoal);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-cta {
  margin-top: 24px;
  padding: 16px;
  background: var(--terracotta);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.3) 40%,
    rgba(26,26,26,0.1) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 160px 40px 0;
  width: 100%;
}
.hero-content { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}
.hero-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-title-accent {
  font-style: italic;
  color: var(--terracotta-light);
}
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-bottom {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num span { color: var(--terracotta-light); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ========== ABOUT ========== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
}
.about-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--charcoal);
  padding: 16px 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-tag-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--terracotta-light);
}
.about-tag-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.about-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-point-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.about-point h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.about-point p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== PRODUCTS ========== */
.products { background: #fff; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26,26,26,0.08);
}
.product-img {
  height: 240px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 28px 26px; }
.product-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: block;
}
.product-body h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(217,93,57,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,93,57,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.services .section-title { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+4) { border-bottom: none; }
.service-card:hover {
  background: rgba(255,255,255,0.03);
}
.service-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ========== GLOBAL ========== */
.global { background: var(--cream); }
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.global-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px;
}
.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.global-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}
.global-stat-num span { font-size: 22px; }
.global-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
.global-regions {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.region-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.region-item:first-child { padding-top: 0; }
.region-item:last-child { border-bottom: none; }
.region-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.region-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  gap: 16px;
  background: var(--cream);
  padding: 20px 22px;
  border-radius: 8px;
  transition: all 0.3s;
}
.contact-item:hover {
  border-left: 3px solid var(--terracotta);
}
.contact-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(217,93,57,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.contact-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--terracotta); }
.contact-map {
  border-radius: 8px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%; height: 240px;
  border: 0; display: block;
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--charcoal);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}
.map-link:hover { background: var(--charcoal-light); }

.contact-form-wrap {
  background: var(--cream);
  padding: 44px;
  border-radius: 12px;
}
.contact-form-wrap h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(217,93,57,0.08);
  border: 1px solid var(--terracotta);
  border-radius: 8px;
  color: var(--terracotta-dark);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-success.active { display: flex; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--charcoal);
  background: #fff;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217,93,57,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: #fff;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.footer-col ul li a:hover {
  color: var(--terracotta-light);
  padding-left: 4px;
}
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 3px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--terracotta-light); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .product-card:hover, .service-card:hover, .btn:hover { transform: none !important; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+4) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .service-card:nth-child(n+5) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual img { height: 420px; }
  .global-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-container { padding: 120px 20px 0; }
  .hero-bottom { padding: 24px 20px; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .service-card:last-child { border-bottom: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .global-stats { grid-template-columns: 1fr; gap: 24px; }
  .section-header { margin-bottom: 56px; }
}
