/* ============================================================
   TallFashion.com — Premium Fashion Domain For Sale
   Elegant fashion aesthetic — charcoal, rose gold, serif headings
   Plain CSS (no Tailwind)
   ============================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  background-color: #faf9f7;
  color: #2d2d2d;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utility classes --- */
.title-font {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.text-rose-gold {
  color: #c9956c;
}

.text-rose {
  color: #c9956c;
}

.text-white {
  color: #fff;
}

.center {
  text-align: center;
}

.bg-white {
  background-color: #fff;
}

.bg-cream {
  background-color: #faf5f0;
}

.bg-charcoal {
  background-color: #1a1a2e;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .container,
  .container-narrow {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* --- Navigation --- */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e8e4df;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  font-size: 1.25rem;
  color: #c9956c;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.025em;
}

.nav-badge-wrap {
  display: none;
}

@media (min-width: 768px) {
  .nav-badge-wrap {
    display: flex;
    align-items: center;
  }
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: #fdf2e9;
  color: #a0714d;
  border: 1px solid #e8d5c0;
}

/* --- Hero --- */
.hero {
  position: relative;
  background: url("/tallfashion.jpg");
  background-size: cover;
  background-position: center top;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.72) 0%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  padding: 5rem 1.5rem;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 4.5rem;
  }
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: #c9956c;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.625rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background-color: #c9956c;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background-color: #b07d56;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.btn-secondary:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #c9956c;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #c9956c;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 0.75rem;
}

.btn-outline:hover {
  background-color: #c9956c;
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  font-weight: 300;
  color: #5a5a6e;
  line-height: 1.7;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #ece7e1;
  border-radius: 4px;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  color: #c9956c;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.feature-text {
  color: #5a5a6e;
  font-weight: 300;
  line-height: 1.7;
}

/* --- Showcase --- */
.showcase-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .showcase-grid {
    flex-direction: row;
    align-items: center;
  }
}

.showcase-info {
  flex: 1;
}

@media (min-width: 768px) {
  .showcase-info {
    padding-right: 3rem;
  }
}

.showcase-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .showcase-title {
    font-size: 2.25rem;
  }
}

.showcase-text {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #5a5a6e;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: #2d2d2d;
  font-size: 1.0625rem;
}

.check {
  color: #c9956c;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.showcase-card-wrap {
  flex: 1;
  position: relative;
}

.showcase-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid #ece7e1;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.08);
}

.showcase-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.premium-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: #fdf2e9;
  color: #a0714d;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.showcase-domain {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.showcase-availability {
  color: #5a5a6e;
  font-size: 0.9375rem;
  font-weight: 300;
}

/* --- Price Tag --- */
.price-tag {
  position: relative;
  background: #faf5f0;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border: 1px solid #ece7e1;
}

.price-label {
  color: #6b6b7b;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9956c;
  font-family: "Playfair Display", Georgia, serif;
}

.showcase-card-footer {
  text-align: center;
}

.escrow-note {
  color: #5a5a6e;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

/* --- CTA Section (charcoal bg) --- */
.bg-charcoal .section-title {
  color: #fff;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.cta-card {
  max-width: 28rem;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cta-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}

.cta-price {
  margin-bottom: 1.5rem;
}

.cta-price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9956c;
  font-family: "Playfair Display", Georgia, serif;
}

.cta-price-note {
  display: block;
  font-size: 0.875rem;
  color: #6b6b7b;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.cta-card-text {
  color: #5a5a6e;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.cta-fine-print {
  font-size: 0.8125rem;
  color: #8a8a9a;
  margin-top: 1.25rem;
  font-weight: 300;
}

/* --- FAQ --- */
.faq-list {
  text-align: left;
  max-width: 44rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ece7e1;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
}

.faq-item-last {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.625rem;
}

.faq-answer {
  color: #5a5a6e;
  line-height: 1.8;
  font-weight: 300;
}

.faq-answer a {
  color: #c9956c;
  border-bottom: 1px solid #c9956c;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: #b07d56;
}

/* --- Footer --- */
.footer {
  background-color: #1a1a2e;
  color: #fff;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  color: #c9956c;
}

.footer-text {
  color: #a0a0b8;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9956c;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: #a0a0b8;
  transition: color 0.2s ease;
  font-size: 0.875rem;
  font-weight: 300;
}

.footer-links a:hover {
  color: #fff;
}

.footer-escrow-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid #3a3a52;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid #2a2a42;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #6b6b7b;
  font-size: 0.8125rem;
  font-weight: 300;
}
