@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --tdl-primary: #d4af37;
  --tdl-bg-dark: #0a0a0a;
  --tdl-bg-card: #141414;
  --tdl-text-light: #f5f5f5;
  --tdl-text-muted: #aaaaaa;
  --tdl-accent: #6b1424;
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--tdl-bg-dark);
  color: var(--tdl-text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, .tdl-brand-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--tdl-primary);
}

/* HEADER */
.tdl-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
}

.tdl-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.tdl-brand-logo {
  display: flex;
  flex-direction: column;
}

.tdl-brand-title {
  font-size: 1.8rem;
  color: var(--tdl-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tdl-brand-subtitle {
  font-size: 0.8rem;
  color: var(--tdl-text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.tdl-badge {
  border: 1px solid var(--tdl-primary);
  color: var(--tdl-primary);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

/* HERO SECTION */
.tdl-hero-wrapper {
  padding: 12rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(107, 20, 36, 0.4));
  position: relative;
}

.tdl-hero-content {
  max-width: 900px;
  z-index: 2;
}

.tdl-hero-label {
  font-size: 0.9rem;
  color: var(--tdl-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.tdl-hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.tdl-hero-desc {
  font-size: 1.2rem;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

.tdl-hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.tdl-info-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tdl-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--tdl-primary);
}

.tdl-info-card h4 {
  color: var(--tdl-primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.tdl-info-card p {
  font-size: 0.95rem;
  color: var(--tdl-text-muted);
}

/* SECTIONS COMMON */
.tdl-section-wrap {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tdl-sec-header {
  text-align: center;
  margin-bottom: 5rem;
}

.tdl-sec-header h2 {
  font-size: 2.8rem;
  color: var(--tdl-text-light);
  margin-bottom: 1rem;
}

.tdl-sec-header p {
  color: var(--tdl-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.tdl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* CARDS */
.tdl-feature-card {
  background: var(--tdl-bg-card);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tdl-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--tdl-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.tdl-feature-card:hover {
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tdl-feature-card:hover::before {
  transform: scaleX(1);
}

.tdl-card-kicker {
  font-size: 0.8rem;
  color: var(--tdl-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.tdl-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.tdl-feature-card p {
  color: var(--tdl-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tdl-card-list {
  list-style: none;
}

.tdl-card-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #ccc;
}

.tdl-card-list li::before {
  content: '•';
  color: var(--tdl-primary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* FOOTER */
.tdl-bottom-area {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 6rem 2rem 3rem;
}

.tdl-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.tdl-footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--tdl-primary);
  margin-bottom: 1.5rem;
}

.tdl-footer-col p {
  color: var(--tdl-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tdl-footer-contacts p, .tdl-footer-nav p {
  margin-bottom: 0.8rem;
}

.tdl-footer-nav ul {
  list-style: none;
}

.tdl-footer-nav ul li {
  margin-bottom: 0.5rem;
}

.tdl-footer-nav ul li a {
  color: var(--tdl-text-muted);
  font-size: 0.95rem;
}

.tdl-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tdl-cards-grid, .tdl-hero-info-grid, .tdl-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tdl-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .tdl-cards-grid, .tdl-hero-info-grid, .tdl-footer-grid {
    grid-template-columns: 1fr;
  }
  .tdl-hero-wrapper {
    padding: 10rem 1rem 4rem;
  }
  .tdl-hero-title {
    font-size: 2.8rem;
  }
  .tdl-nav-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
