/* =============================================================
   COMPONENTS.CSS
   Buttons · Cards · Forms · Table · Gallery · Badges · Misc UI
   ============================================================= */


/* ─── BUTTONS ─── */

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.9rem 2.25rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(184, 146, 42, 0.5);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.btn-form {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.btn-form:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}


/* ─── HERO ELEMENTS ─── */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-gold-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-hint svg {
  opacity: 0.4;
}


/* ─── OPPORTUNITY SECTION ─── */

.opportunity-body p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.opportunity-body p:last-child {
  margin-bottom: 0;
}

.key-points {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.key-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.5;
}

.key-points li:last-child {
  border-bottom: none;
}

.kp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kp-icon svg {
  width: 10px;
  height: 10px;
  fill: white;
}


/* ─── HIGHLIGHT CARDS (Portfolio) ─── */

.highlight-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
  border-color: rgba(184, 146, 42, 0.4);
  box-shadow: var(--shadow-sm);
}

/* Gold left-border accent on hover */
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.highlight-card:hover::before {
  opacity: 1;
}

.hc-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hc-value {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.hc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* ─── GALLERY ─── */

.gallery-item {
  background: var(--navy-mid);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 1;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.9), transparent);
  padding: 1.25rem 1rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.photo-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}


/* ─── DIFFERENTIATORS ─── */

.diff-visual {
  background: var(--navy);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Ambient top-right glow inside the visual card */
.diff-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(184, 146, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.diff-quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.diff-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.diff-caption {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.dp-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gray-200);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.dp-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.dp-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ─── BUYER CARDS ─── */

.buyer-card {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  background: var(--white);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.buyer-card:hover {
  border-color: rgba(184, 146, 42, 0.35);
  box-shadow: var(--shadow-sm);
}

.buyer-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.buyer-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buyer-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.buyer-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ─── SPECIFICATIONS TABLE ─── */

table.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.specs-table thead tr {
  background: var(--navy);
}

.specs-table thead th {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}

.specs-table thead th:first-child {
  color: var(--gold-light);
}

.specs-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table tbody tr:hover {
  background: var(--gold-pale);
}

.specs-table td {
  padding: 1rem 1.25rem;
  color: var(--text-body);
  vertical-align: middle;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.tag-compliant {
  display: inline-block;
  background: #e6f4ea;
  color: #2d6a4f;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.confidential-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.confidential-note strong {
  color: var(--navy);
  font-style: normal;
}


/* ─── INQUIRY FORM ─── */

.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(184, 146, 42, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

select option {
  background: var(--navy);
  color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

.form-submit {
  text-align: center;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-privacy {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.form-privacy svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.3);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Form responsive */
@media (max-width: 600px) {
  .form-card {
    padding: 1.75rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ─── SUCCESS MESSAGE ─── */

.success-msg {
  display: none;
  text-align: center;
  padding: 2.5rem;
}

.success-msg svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 1rem;
}

.success-msg h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.success-msg p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}
