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

body {
  background: #1c1c1c;
  font-family: 'Nunito Sans', sans-serif;
  color: #111;
  padding: 24px;
}

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

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

/* ------------------------------
   Main page shell
------------------------------ */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  background: #f3f3f3;
}

/* ------------------------------
   Header
------------------------------ */
.site-header {
  background: #f3f3f3;
  padding: 22px 20px 10px;
}

.branding {
  text-align: left;
}

.branding h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 0.95;
}

.branding p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-top: -2px;
  text-align: center;
}

/* ------------------------------
   Hero section
------------------------------ */
.hero-section {
  display: flex;
  min-height: 420px;
  position: relative;
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: #aebfc7;
  border: none;
  font-size: 1.4rem;
  padding: 8px 12px;
  cursor: pointer;
}

.side-nav {
  width: 20%;
  min-width: 170px;
  background: #aebfc7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 18px;
}

.side-nav a {
  font-size: 1.5rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.side-nav a:hover {
  opacity: 0.75;
}

.hero-image {
  flex: 1;
  min-height: 420px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

/* ------------------------------
   Intro content
------------------------------ */
.content-section {
  background: #f3f3f3;
  padding: 70px 24px 80px;
}

.intro-text {
  max-width: 820px;
  margin: 0 auto;
}

.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 0.95;
  margin-bottom: 38px;
}

.intro-text p {
  max-width: 700px;
  font-size: 1.7rem;
  line-height: 1.7;
  margin: 0 auto 26px;
}

/* ------------------------------
   Figma section
------------------------------ */
.figma-section {
  display: flex;
  min-height: 500px;
  background: #f3f3f3;
}

.figma-inner {
  flex: 1;
  padding: 0 24px 40px;
}

.figma-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: center;
}

.slider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-btn {
  background: transparent;
  border: none;
  font-size: 4rem;
  cursor: pointer;
  color: #111;
  line-height: 1;
}

.slider-box {
  background: #d9d9d9;
  width: 100%;
  max-width: 760px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
  border-radius: 4px;
}

.slider-box img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.slider-box p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #111;
}

.accent-panel {
  width: 20%;
  min-width: 160px;
  background: #aebfc7;
}

/* ------------------------------
   Footer
------------------------------ */
.site-footer {
  background: #ececec;
  text-align: center;
  padding: 36px 20px;
}

.site-footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 8px;
}

.site-footer p {
  font-size: 1.4rem;
}

/* ------------------------------
   Tablet
------------------------------ */
@media (max-width: 1024px) {
  .branding h1 {
    font-size: 3.2rem;
  }

  .branding p {
    font-size: 1.1rem;
  }

  .side-nav a {
    font-size: 1.2rem;
  }

  .intro-text h2 {
    font-size: 3.6rem;
  }

  .intro-text p {
    font-size: 1.3rem;
  }

  .figma-inner h2 {
    font-size: 3.2rem;
  }

 .slider-box {
  min-height: 280px;
}

.slider-box img {
  max-height: 320px;
}

.slider-box p {
  font-size: 1rem;
}

  .slider-btn {
    font-size: 3rem;
  }

  .site-footer h3 {
    font-size: 2.5rem;
  }

  .site-footer p {
    font-size: 1.1rem;
  }
}

/* ------------------------------
   Mobile
------------------------------ */
@media (max-width: 768px) {
  body {
    padding: 18px;
  }

  .site-header {
    padding: 18px 16px 12px;
  }

  .branding {
    text-align: center;
  }

  .branding h1 {
    font-size: 2.5rem;
  }

  .branding p {
    font-size: 1rem;
  }

  .hero-section {
    flex-direction: column;
    min-height: auto;
  }

  .menu-toggle {
    display: block;
  }

  .side-nav {
    display: none;
    width: 100%;
    min-width: unset;
    padding: 20px;
    gap: 16px;
  }

  .side-nav.show {
    display: flex;
  }

  .side-nav a {
    font-size: 1.2rem;
  }

  .hero-image {
    display: none;
  }

  .content-section {
    padding: 36px 18px 44px;
  }

  .intro-text h2 {
    font-size: 2.35rem;
    line-height: 1.05;
    margin-bottom: 24px;
  }

  .intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .figma-section {
    flex-direction: column;
    min-height: auto;
    background: #aebfc7;
  }

  .figma-inner {
    padding: 34px 16px 34px;
  }

  .figma-inner h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 26px;
  }

  .slider-row {
    gap: 12px;
  }

  .slider-btn {
    font-size: 2.4rem;
  }

 .slider-box {
  min-height: 220px;
  max-width: none;
  padding: 14px;
}

.slider-box img {
  max-height: 220px;
}

.slider-box p {
  font-size: 0.95rem;
}

  .accent-panel {
    display: none;
  }

  .site-footer {
    padding: 28px 16px;
  }

  .site-footer h3 {
    font-size: 2rem;
  }

  .site-footer p {
    font-size: 1rem;
  }
}
































































/* ------------------------------
   Second page layout
------------------------------ */

/* removes empty hero image area on page 2 */
.hero-no-image {
  min-height: auto;
}

.hero-no-image .side-nav {
  width: 100%;
  min-width: unset;
  flex-direction: row;
  justify-content: center;
  gap: 34px;
  padding: 24px 20px;
}

.mobile-page-intro {
  display: none;
}

/* blue thumbnail section */
.thumbnail-section {
  background: #aebfc7;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.thumbnail-grid {
  width: 100%;
  max-width: 1320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.thumb-card {
  width: 400px;
}

.thumb-card img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
}

.thumb-card figcaption {
  margin-top: 12px;
  text-align: right;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: #111;
}

/* white resource section */
.resource-section {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 70px 60px;
}

.resource-text {
  flex: 1;
  max-width: 700px;
}

.resource-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 24px;
}

.resource-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.download-btn {
  display: inline-block;
  background: #aebfc7;
  color: #111;
  padding: 14px 26px;
  border: none;
  font-size: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  transition: 0.2s ease;
}

.download-btn:hover {
  opacity: 0.8;
}

.resource-image {
  width: 320px;
  flex-shrink: 0;
}

.resource-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ------------------------------
   Tablet adjustments
------------------------------ */
@media (max-width: 1200px) {
  .thumb-card {
    width: 30%;
  }

  .thumb-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .resource-text h2 {
    font-size: 3rem;
  }

  .resource-text p {
    font-size: 1.05rem;
  }

  .resource-image {
    width: 260px;
  }

  .resource-image img {
    height: 440px;
  }
}

/* ------------------------------
   Mobile second page
------------------------------ */
@media (max-width: 768px) {
  .hero-no-image {
    flex-direction: column;
  }

  .hero-no-image .side-nav {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 20px;
  }

  .mobile-page-intro {
    display: block;
    background: #ffffff;
    padding: 34px 18px 24px;
  }

  .mobile-page-intro-inner {
    max-width: 520px;
    margin: 0 auto;
  }

  .mobile-page-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .thumbnail-section {
    min-height: 1050px;
    padding: 40px 18px;
  }

  .thumbnail-grid {
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }

  .thumb-card {
    width: 100%;
    max-width: 300px;
  }

  .thumb-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .thumb-card figcaption {
    font-size: 14pt;
    text-align: right;
  }

  .resource-section {
    flex-direction: column;
    gap: 24px;
    padding: 36px 18px 42px;
  }

  .resource-text {
    max-width: none;
  }

  .resource-text h2 {
    font-size: 2.35rem;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .resource-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .resource-image {
    display: none;
  }

  .download-btn {
    padding: 12px 22px;
    font-size: 1rem;
  }
}