/* ============================================================
   TRAILBLAZER GIFT STUDIO — MAIN STYLESHEET
   ============================================================ */

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

:root {
  --black:      #080808;
  --surface:    #111111;
  --surface2:   #161616;
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dim:   #7A6530;
  --white:      #F5F5F0;
  --muted:      #888880;
  --border:     #242424;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden;
}

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}
.nav-logo span { color: var(--muted); font-weight: 300; font-size: 11px; display: block; letter-spacing: 0.3em; margin-top: -2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--gold-light); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.nav-toggle { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 76px;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 14px; color: var(--muted); line-height: 1.8;
  max-width: 400px; margin-bottom: 48px; margin-top: 20px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none; font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); color: var(--black); }
.btn-ghost {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--border);
  color: var(--muted); text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold-light); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px; font-weight: 300; color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.hero-right {
  position: relative; overflow: hidden;
  background: var(--surface);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.9);
}
.hero-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px; background: var(--surface2);
}
.hero-img-placeholder-icon { font-family: var(--serif); font-size: 100px; color: var(--gold); opacity: 0.12; }
.hero-img-placeholder-text { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 80px;
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; padding-right: 48px;
  border-right: 1px solid var(--border); margin-right: 48px;
  flex-shrink: 0;
}
.trust-logos {
  display: flex; align-items: center; gap: 56px; flex-wrap: wrap;
}
.trust-logo-item {
  font-family: var(--serif);
  font-size: 15px; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 400;
  transition: color 0.3s;
}
.trust-logo-item:hover { color: var(--gold-light); }

/* ── SECTION BASE ── */
section { padding: 120px 80px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.section-eyebrow::before {
  content:''; display:block; width:32px; height:1px; background:var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── COLLECTIONS ── */
.collections { background: var(--black); }
.collections-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px; gap: 32px; flex-wrap: wrap;
}
.collections-sub {
  font-size: 14px; color: var(--muted); max-width: 340px;
  text-align: right; line-height: 1.8;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.collection-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.collection-card-bg {
  position: absolute; inset: 0;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.collection-card:hover .collection-card-bg { transform: scale(1.04); }
.collection-card-icon {
  font-family: var(--serif);
  font-size: 80px; opacity: 0.06; color: var(--gold);
  pointer-events: none;
  user-select: none;
}
.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 36px;
  transition: all 0.4s;
}
.collection-tag {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.collection-name {
  font-family: var(--serif);
  font-size: 28px; font-weight: 400; color: var(--white);
  line-height: 1.2; margin-bottom: 8px;
}
.collection-desc {
  font-size: 12px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.collection-card:hover .collection-desc {
  max-height: 60px; opacity: 1;
}
.collection-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s 0.05s;
}
.collection-cta::after {
  content: '→'; transition: transform 0.3s;
}
.collection-card:hover .collection-cta {
  opacity: 1; transform: translateY(0);
}
.collection-card:hover .collection-cta::after {
  transform: translateX(4px);
}

/* ── PROCESS ── */
.process { background: var(--surface); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 72px;
  border: 1px solid var(--border);
}
.process-step {
  padding: 48px 36px;
  background: var(--surface2);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: #1a1a1a; }
.process-num {
  font-family: var(--serif);
  font-size: 56px; font-weight: 300;
  color: var(--gold-dim); line-height: 1;
  margin-bottom: 24px; opacity: 0.6;
}
.process-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 12px;
}
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── ABOUT ── */
.about {
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  width: 100%; aspect-ratio: 3/4;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2);
}
.about-img-placeholder-text {
  font-family: var(--serif); font-size: 80px;
  color: var(--gold); opacity: 0.15;
}
.about-gold-line {
  position: absolute; top: 32px; left: -20px;
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}
.about-content { padding: 20px 0; }
.about-quote {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300; font-style: italic;
  color: var(--gold-light); line-height: 1.4;
  margin: 28px 0 36px;
  padding-left: 24px;
  border-left: 2px solid var(--gold-dim);
}
.about-body {
  font-size: 14px; color: var(--muted); line-height: 1.9;
  margin-bottom: 20px;
}
.about-name {
  font-family: var(--serif);
  font-size: 20px; color: var(--white); margin-top: 40px;
}
.about-title-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--surface); }
.testi-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; gap: 32px; flex-wrap: wrap;
}
.testi-google {
  text-align: right;
}
.testi-rating {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300; color: var(--gold-light);
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 16px; margin: 4px 0; letter-spacing: 2px; }
.testi-count { font-size: 12px; color: var(--muted); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi-card {
  background: var(--surface2);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: var(--gold-dim); }
.testi-stars-sm { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-text {
  font-family: var(--serif);
  font-size: 17px; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.7;
  margin-bottom: 28px;
}
.testi-author { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.testi-author strong { display: block; color: var(--white); font-weight: 400; margin-bottom: 2px; font-size: 13px; }

/* ── INQUIRY FORM ── */
.inquiry { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.inquiry-left { padding-top: 8px; }
.inquiry-body { font-size: 14px; color: var(--muted); line-height: 1.9; margin-top: 28px; max-width: 400px; }
.inquiry-contact { margin-top: 48px; }
.inquiry-contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.inquiry-contact-icon { font-size: 16px; color: var(--gold); }
.inquiry-contact-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.inquiry-contact-value { font-size: 14px; color: var(--white); margin-top: 2px; }
.form { padding: 56px; background: var(--surface); border: 1px solid var(--border); }
.form-title {
  font-family: var(--serif);
  font-size: 28px; font-weight: 300; color: var(--white);
  margin-bottom: 8px;
}
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white); font-family: var(--sans);
  font-size: 14px; font-weight: 300;
  padding: 14px 16px; outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--surface2); }
.form-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
  border: none; cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.form-success {
  background: var(--surface2); border: 1px solid var(--gold-dim);
  color: var(--gold-light); padding: 20px; font-size: 13px; margin-top: 16px;
}
.form-error {
  background: var(--surface2); border: 1px solid #7a3030;
  color: #e0a3a3; padding: 20px; font-size: 13px; margin-top: 16px;
}

/* ── FOOTER ── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 80px 40px;
}
.footer-brand-name { font-family: var(--serif); font-size: 24px; color: var(--gold-light); letter-spacing: 0.08em; }
.footer-brand-sub { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 4px; margin-bottom: 20px; }
.footer-brand-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 320px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; line-height: 2.4; transition: color 0.3s; display: block; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 80px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-credit { font-size: 12px; color: var(--muted); }
.footer-credit span { color: var(--gold-dim); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GOLD LINE SIGNATURE ── */
.gold-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  cursor: pointer; transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ============================================================
   BLOG / ARCHIVE / SINGLE POST / GENERIC PAGE STYLES
   (kept in the same visual language as the rest of the theme)
   ============================================================ */
.page-hero {
  padding: 160px 80px 80px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-eyebrow { margin-bottom: 20px; }
.page-hero .section-title { margin-bottom: 0; }

.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 80px;
}
.content-wrap.narrow { max-width: 760px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}
.blog-card { text-decoration: none; display: block; }
.blog-card-thumb {
  aspect-ratio: 4/3; background: var(--surface);
  overflow: hidden; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card-title { font-family: var(--serif); font-size: 24px; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.8; }

.single-post-header { margin-bottom: 48px; }
.single-post-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.single-post-title { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 24px; }
.single-post-thumb { margin: 40px 0; aspect-ratio: 16/9; background: var(--surface); overflow: hidden; }
.single-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.entry-content { font-size: 15px; color: var(--muted); line-height: 1.9; }
.entry-content p { margin-bottom: 24px; }
.entry-content h2 { font-family: var(--serif); font-size: 30px; color: var(--white); font-weight: 400; margin: 48px 0 20px; }
.entry-content h3 { font-family: var(--serif); font-size: 22px; color: var(--white); font-weight: 400; margin: 36px 0 16px; }
.entry-content a { color: var(--gold-light); text-decoration: underline; text-decoration-color: var(--gold-dim); }
.entry-content blockquote {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-light);
  border-left: 2px solid var(--gold-dim); padding-left: 24px; margin: 32px 0;
}
.entry-content ul, .entry-content ol { margin: 0 0 24px 20px; }
.entry-content li { margin-bottom: 10px; }
.entry-content img { margin: 32px 0; }

.pagination { display: flex; gap: 16px; margin-top: 64px; }
.pagination a, .pagination span {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--border); color: var(--muted); text-decoration: none;
}
.pagination a:hover { border-color: var(--gold-dim); color: var(--gold-light); }
.pagination .current { border-color: var(--gold); color: var(--gold); }

.comments-area { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--border); }
.comment-list { list-style: none; margin-top: 32px; }
.comment-body { padding: 24px 0; border-bottom: 1px solid var(--border); }
.comment-author { font-family: var(--serif); color: var(--white); font-size: 16px; }
.comment-meta { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.comment-content p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.comment-respond input, .comment-respond textarea {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--white); padding: 12px 16px; font-family: var(--sans); margin-bottom: 16px;
}
.comment-respond textarea { min-height: 120px; resize: vertical; }

.widget-area { padding: 0; }
.widget { margin-bottom: 48px; }
.widget-title { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 20px; }
.widget ul { list-style: none; }
.widget li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.widget a { color: var(--muted); text-decoration: none; }
.widget a:hover { color: var(--gold-light); }

.error-404 { text-align: center; padding: 200px 80px; }
.error-404 .section-title { margin-bottom: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero, .about, .inquiry { grid-template-columns: 1fr; gap: 48px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 40px; }
  .site-header { padding: 0 24px; }
  .hero-left { padding: 60px 40px; }
  .trust-bar, .footer-top, .footer-bottom { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: none; color: var(--gold-light); font-size: 22px; cursor: pointer; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
}
