/* The Gilded Pilgrim - Style Sheet */

:root {
  --burgundy: #8B0000;
  --burgundy-dark: #6B0000;
  --gold: #C9A227;
  --gold-light: #D4B84A;
  --cream: #FDFBF7;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --text-muted: #888888;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 18px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--burgundy);
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

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

.section {
  padding: 5rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.section--burgundy h2,
.section--burgundy h3 {
  color: var(--gold);
}

.section--burgundy a {
  color: var(--gold);
}

.section--burgundy a:hover {
  color: var(--gold-light);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav__links a:hover {
  color: var(--burgundy);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero__tagline {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero__text {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__image {
  text-align: center;
}

.hero__image img {
  max-width: 380px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--burgundy-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn--secondary:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--burgundy-dark);
}

/* Philosophy Section */
.philosophy {
  text-align: center;
}

.philosophy h2 {
  margin-bottom: 1rem;
}

.philosophy__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: left;
}

.philosophy__item h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.philosophy__item p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__image img {
  max-width: 100%;
  border-radius: 4px;
}

.about-preview__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.credential {
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--burgundy);
  border: 1px solid rgba(139, 0, 0, 0.1);
}

/* Newsletter CTA */
.newsletter-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-cta h2 {
  margin-bottom: 1rem;
}

.newsletter-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* About Page */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--cream);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-full__sidebar {
  position: sticky;
  top: 6rem;
}

.about-full__sidebar img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.about-full__contact {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 4px;
}

.about-full__contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.about-full__content h2 {
  margin-top: 2rem;
}

.about-full__content h2:first-child {
  margin-top: 0;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  border: 1px solid rgba(139, 0, 0, 0.2);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Insights Page */
.insights-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cream);
  border-radius: 8px;
}

.coming-soon h3 {
  color: var(--burgundy);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content h1 {
    font-size: 2.75rem;
  }
  
  .hero__text {
    margin: 0 auto 2rem;
  }
  
  .hero__image {
    order: -1;
  }
  
  .hero__image img {
    max-width: 280px;
  }
  
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-preview {
    grid-template-columns: 1fr;
  }
  
  .about-preview__image {
    text-align: center;
  }
  
  .about-preview__image img {
    max-width: 300px;
  }
  
  .about-full {
    grid-template-columns: 1fr;
  }
  
  .about-full__sidebar {
    position: static;
    text-align: center;
  }
  
  .about-full__sidebar img {
    max-width: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  }
  
  .nav__links.active {
    display: flex;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .section {
    padding: 3rem 0;
  }
}
