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

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6em;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #666;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.3;
}

h1 { font-size: 2em; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.3em; }

p {
  margin-bottom: 1em;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

/* ==================== LAYOUT ==================== */

#canvas {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==================== HEADER ==================== */

#header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 40px 0 30px;
  border-bottom: 1px solid #eee;
}

#logo h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8em;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0;
}

#logo h1 a {
  color: #222;
}

#logo .logo-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  font-weight: 300;
}

/* ==================== NAVIGATION ==================== */

#topNav {
  display: flex;
  align-items: center;
}

#topNav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

#topNav ul li a {
  display: block;
  padding: 8px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222;
  transition: color 0.2s;
}

#topNav ul li a:hover,
#topNav ul li.active a {
  color: #999;
}

/* Mobile menu toggle */
#mobileMenuLink {
  display: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
}

#mobileNav {
  display: none;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

#mobileNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobileNav ul li a {
  display: block;
  padding: 8px 0;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222;
}

#mobileNav ul li a:hover {
  color: #999;
}

/* ==================== MAIN CONTENT ==================== */

#page {
  padding: 40px 0;
  min-height: 60vh;
}

/* ==================== SLIDESHOW (Homepage) ==================== */

.slideshow-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  width: 100%;
  text-align: center;
}

.slide.active {
  display: block;
}

.slide img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.slide .image-description {
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
  color: #444;
}

.gallery-controls {
  text-align: center;
  padding: 20px 0;
  user-select: none;
}

.gallery-controls span {
  display: inline-block;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
  transition: color 0.2s;
}

.gallery-controls span:hover {
  color: #999;
}

.gallery-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #ccc;
  margin: 0 15px;
  vertical-align: middle;
  cursor: default !important;
}

/* ==================== PAGE CONTENT BLOCKS ==================== */

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: 0.5em;
}

.page-content h3 {
  margin: 1.5em 0 0.5em;
}

.page-content p {
  line-height: 1.8;
}

/* Two-column layout */
.two-col {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.two-col .col {
  flex: 1;
}

.two-col .col img {
  width: 100%;
}

/* ==================== RATES PAGE ==================== */

.rates-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

.rate-block {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.rate-block h1 {
  margin-bottom: 0.3em;
}

.rate-block h2 {
  font-weight: 300;
  color: #666;
  margin-bottom: 0.5em;
}

.rate-block .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5em;
  font-weight: 300;
  margin: 0.3em 0;
}

.rate-block ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rate-block ul li {
  padding: 4px 0;
  line-height: 1.6;
}

.rate-block ul li::before {
  content: "-";
  margin-right: 6px;
}

.rate-block .description {
  max-width: 600px;
  margin: 1em auto;
  text-align: left;
  line-height: 1.8;
}

.rate-block img {
  max-width: 100%;
  margin: 20px auto;
}

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #222;
  border: 1px solid #222;
  padding: 12px 30px;
  transition: all 0.3s;
  margin-top: 1em;
}

.btn:hover {
  background: #222;
  color: #fff;
}

.btn-text {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #222;
  border-bottom: 1px solid #222;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-text:hover {
  color: #999;
  border-color: #999;
}

/* ==================== TESTIMONIALS ==================== */

.testimonials {
  max-width: 750px;
  margin: 0 auto;
}

.testimonials h1 {
  text-align: center;
  margin-bottom: 2em;
}

.testimonial-location {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin: 2.5em 0 1em;
  padding-top: 1.5em;
  border-top: 1px solid #eee;
}

.testimonial-location:first-of-type {
  border-top: none;
  padding-top: 0;
}

.testimonial {
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-style: italic;
  color: #444;
}

/* ==================== ABOUT PAGE ==================== */

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h1 {
  margin-bottom: 1em;
}

.about-section {
  margin-bottom: 2em;
}

.about-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  margin-bottom: 0.5em;
  color: #222;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 2em 0;
}

.about-images img {
  width: 100%;
  object-fit: cover;
}

/* ==================== MENTORING PAGE ==================== */

.mentoring-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.mentoring-content .mentoring-image {
  flex: 1;
}

.mentoring-content .mentoring-image img {
  width: 100%;
}

.mentoring-content .mentoring-image figcaption {
  font-size: 12px;
  color: #999;
  font-style: italic;
  margin-top: 8px;
}

.mentoring-content .mentoring-text {
  flex: 1;
}

.mentoring-content .mentoring-text h1 {
  margin-bottom: 0.5em;
}

.mentoring-content .mentoring-text .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  text-align: center;
  margin: 1em 0;
}

.mentoring-cta {
  text-align: center;
  margin-top: 30px;
}

/* ==================== CONTACT PAGE ==================== */

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h3 {
  text-align: center;
  margin-bottom: 2em;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #222;
  background: #fff;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #222;
}

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

.contact-form button {
  align-self: flex-start;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #222;
  border: 1px solid #222;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: #444;
  border-color: #444;
}

/* ==================== BLOG ==================== */

.blog-list {
  max-width: 800px;
  margin: 0 auto;
}

.blog-entry {
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.blog-entry:last-child {
  border-bottom: none;
}

.blog-entry h1 a {
  color: #222;
}

.blog-entry h1 a:hover {
  color: #666;
}

.blog-entry .blog-date {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0.5em 0 1.5em;
}

.blog-entry .blog-excerpt {
  line-height: 1.8;
  color: #444;
}

.blog-entry .blog-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5em 0;
}

.blog-entry .blog-images img {
  max-width: 100%;
}

.blog-entry .blog-images.grid-2 img {
  width: calc(50% - 5px);
}

.blog-entry .blog-images.grid-3 img {
  width: calc(33.333% - 7px);
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post h1 {
  margin-bottom: 0.3em;
}

.blog-post .blog-date {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2em;
}

.blog-post .blog-body {
  line-height: 1.8;
}

.blog-post .blog-body p {
  margin-bottom: 1.2em;
}

.blog-post .blog-body img {
  max-width: 100%;
  margin: 1.5em auto;
}

.blog-post .blog-body .image-row {
  display: flex;
  gap: 10px;
  margin: 1.5em 0;
}

.blog-post .blog-body .image-row img {
  flex: 1;
  margin: 0;
  object-fit: cover;
}

.blog-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid #eee;
}

.blog-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==================== FOOTER ==================== */

#footer {
  border-top: 1px solid #eee;
  padding: 30px 0;
  text-align: center;
}

#footer .back-to-top {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

#footer .back-to-top:hover {
  color: #222;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #999;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #222;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  #canvas {
    padding: 0 20px;
  }

  #header {
    flex-direction: column;
    padding: 20px 0;
  }

  #topNav {
    display: none;
  }

  #mobileMenuLink {
    display: block;
  }

  #mobileNav.open {
    display: block;
  }

  .two-col,
  .mentoring-content {
    flex-direction: column;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .blog-entry .blog-images.grid-2 img,
  .blog-entry .blog-images.grid-3 img {
    width: 100%;
  }

  .blog-post .blog-body .image-row {
    flex-direction: column;
  }

  .slide img {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6em; }
  h2 { font-size: 1.3em; }

  .rate-block .price {
    font-size: 2em;
  }

  #topNav ul li a {
    padding: 8px 8px;
    font-size: 10px;
  }
}
