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

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 40px 0;
}

/* Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}

p {
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero */
#hero {
  padding-top: 56px;
  padding-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

#hero .hero-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
}

#hero .hero-headline {
  margin-bottom: 8px;
}

#hero .hero-tagline {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* Story */
#story p {
  color: var(--color-text-secondary);
  text-align: justify;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.product-card h3 {
  color: var(--color-text-primary);
}

.product-card p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-secondary);
  flex: 1;
}

.product-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  margin-top: 8px;
}

/* Appearances */
.appearances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.appearance-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.appearance-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.appearance-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.appearance-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.appearance-card-body h3 {
  margin-bottom: 4px;
}

.appearance-card-body p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  flex: 1;
}

.appearance-card-body a {
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
}

/* Work With Me */
#work-with-me .work-subsection {
  margin-bottom: 20px;
}

#work-with-me .work-subsection:last-child {
  margin-bottom: 0;
}

#work-with-me .work-subsection p {
  color: var(--color-text-secondary);
}

/* Contact / Footer */
footer#contact {
  padding: 32px 0 48px;
  border-top: 1px solid var(--color-border);
}

.contact-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  color: var(--color-text-secondary);
  transition: color 0.15s ease;
}

.contact-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

/* Newsletter (hidden by default) */
#newsletter form {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

#newsletter input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-family-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  outline: none;
}

#newsletter input[type="email"]:focus {
  border-color: var(--color-accent);
}

#newsletter button {
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--font-family-primary);
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#newsletter button:hover {
  opacity: 0.9;
}

/* Schedule */
#schedule .schedule-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-accent);
  border-radius: 8px;
  text-decoration: none;
}

#schedule .schedule-link:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Utility */
.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  #hero {
    padding-top: 40px;
    flex-direction: column;
    gap: 16px;
  }

  #hero .hero-tagline {
    font-size: 15px;
  }

  .products-grid,
  .appearances-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 32px 0;
  }

  .container {
    padding: 0 20px;
  }

  .contact-links {
    flex-wrap: wrap;
  }

  #newsletter form {
    flex-direction: column;
  }
}
