/* ============================================================
   Devon Carlson — Portfolio Site
   Global Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   0. FONT IMPORTS — loaded via <link> in HTML head for performance
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --bg-gray:      #e1e1e1;
  --bg-white:     #ffffff;
  --text-dark:    #070707;
  --text-body:    #929292;
  --text-light:   #ffffff;
  --footer-bg:    #020202;
  --btn-blue:     #2B5CDE;
  --btn-blue-hover: #2248B8;
  --border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Nunito Sans', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing */
  --container-width: 1177px;
  --header-height:   72px;
  --section-pad-v:   66px;
  --section-pad-v-sm: 40px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ------------------------------------------------------------
   2. UTILITIES
   ------------------------------------------------------------ */

/* Screen-reader / SEO only — visually hidden but in the DOM */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   3. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-height);
}

/* Home + about: hero fills from top, fixed header overlaps it (same bg colour) */
body.page-home,
body.page-about {
  padding-top: 0;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 0;
}

.section {
  padding-block: var(--section-pad-v);
}

/* Work page: matches Elementor's 140px top margin before first card row */
.work-grid-section {
  padding-top: 140px;
  padding-bottom: var(--section-pad-v);
}

.section--gray {
  background: var(--bg-gray);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.text-body {
  color: var(--text-body);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 36px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 3px;
  border: none;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: #020202;
  color: var(--text-light);
  border-radius: 9999px;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #333333;
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--text-dark);
  color: var(--text-light);
}

/* ------------------------------------------------------------
   6. HEADER / NAV
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--bg-gray);
  box-shadow: none;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}


body:not(.page-home):not(.page-about) .site-header {
  background: #ffffff;
  box-shadow: none;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 23px;
  max-width: 100%;
}

/* Logo */
.site-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: rgb(2, 2, 2);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: rgb(7, 7, 7);
  padding: 13px 20px;
  position: relative;
  transition: color var(--transition);
}

.site-nav a.active {
  font-weight: 700;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 24px 23px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  flex-direction: column;
  gap: 0;
}

/* Header turns white when mobile menu is open — instant, no transition lag */
.site-header:has(.hamburger.open) {
  background: #ffffff !important;
  transition: none;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ------------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------------ */
.page-about .hero {
  min-height: 100vh;
}

.hero {
  min-height: 53vw;
  background-color: var(--bg-gray);
  background-image: url('/media/Devon-Carlson-Designer-1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* shift content above true centre to match live site proportions */
  padding-bottom: 5vw;
}

.hero__container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  padding-inline: 0;
}

.hero__text-img {
  width: 43%;
  margin-right: 110px;
}

.hero__text-h1 {
  font-family: var(--font-heading);
  font-style: normal;
  color: var(--text-dark);
  width: 43%;
  margin-right: 110px;
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.hero__line1 {
  display: block;
  font-size: clamp(12px, 2.7vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero__line2 {
  display: block;
  font-size: clamp(34px, 6.3vw, 88px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  white-space: nowrap;
}

.hero__emoji {
  height: 1.1em;
  width: auto;
  display: inline-block;
  vertical-align: -0.2em;
  margin-left: -0.15em;
}

/* Mobile photo strip — hidden on desktop, shown on mobile */
.hero__mobile-photo {
  display: none;
}


/* Hero variant: page heroes (shorter) */
.hero--page {
  height: 320px;
  background-image: none;
  background-color: var(--bg-gray);
  align-items: flex-end;
  justify-content: flex-start;
}

.hero--page .container {
  padding-bottom: 40px;
}

.hero--page h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 800;
}

/* ------------------------------------------------------------
   8. PROJECT GRID
   ------------------------------------------------------------ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
}

.project-card {
  display: block;
  position: relative;
  transition: transform var(--transition-slow);
  overflow: visible;
  background: transparent;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card__img-wrap {
  width: 470px;
  margin-inline: auto;
}

.project-card__img-wrap img {
  display: block;
  width: 470px;
  height: auto;
}

.project-card__info {
  padding: 20px 0 0;
  text-align: center;
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: rgb(2, 2, 2);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
}

.project-card__tags {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  color: rgb(98, 98, 98);
  text-align: center;
  line-height: 1;
}

/* Work page: show all in 2 cols */
.project-grid--full {
  grid-template-columns: repeat(2, 1fr);
}

/* ------------------------------------------------------------
   9. ABOUT PAGE CONTENT
   ------------------------------------------------------------ */
.about-content {
  max-width: 942px;
  margin-inline: auto;
}

.about-page-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: rgb(7, 7, 7);
  line-height: 1;
  margin-bottom: 20px;
}

.about-content p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: rgb(36, 36, 36);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-content .about-quote {
  font-family: var(--font-heading);
  font-size: 39px;
  font-weight: 300;
  color: rgb(7, 7, 7);
  margin-bottom: 32px;
  line-height: 1.2;
}

.about-content .about-services-heading {
  font-family: var(--font-heading);
  font-size: 39px;
  font-weight: 300;
  color: rgb(7, 7, 7);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* ------------------------------------------------------------
   10. CONTACT / CTA SECTION
   ------------------------------------------------------------ */
.contact-section {
  background: var(--bg-white);
  padding-block: 24px;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.contact-section__intro {
  padding-left: 117px;
  padding-top: 24px;
}

.contact-section__intro h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: rgb(7, 7, 7);
  margin-bottom: 20px;
  line-height: 1;
}

.contact-section__intro p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: rgb(36, 36, 36);
  line-height: 1.5;
  max-width: 400px;
}

/* Centered contact section variant (about page) */
.contact-section--centered .container {
  display: block;
}

.contact-form--centered {
  max-width: 750px;
}

/* Full-page contact section variant (contact page — no hero above it) */
.contact-section--page {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  width: 100%;
  max-width: 429px;
  margin-inline: auto;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: rgb(36, 36, 36);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 6px 12px;
  background: var(--bg-white);
  border: 1px solid rgb(129, 138, 145);
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: rgb(0, 0, 0);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--btn-blue);
  box-shadow: 0 0 0 3px rgba(43, 92, 222, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 102px;
  padding: 5px 14px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgb(129, 138, 145);
}

.contact-form .btn {
  margin-top: 8px;
}

/* Full-width contact page */
.contact-page {
  background: var(--bg-gray);
  padding-block: var(--section-pad-v);
  min-height: calc(100vh - var(--header-height) - 200px);
}

.contact-page .container {
  max-width: 640px;
}

.contact-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-page .subtitle {
  color: var(--text-body);
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ------------------------------------------------------------
   11. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding-block: 56px;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-inline: 30px;
}

.footer-copy p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 468px;
  line-height: 1.65;
}

.footer-copyright {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.45) !important;
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  flex-shrink: 0;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  padding: 13px 20px;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.65);
}

/* Services bullet list (contact section + about page) */
.services-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-list li {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: rgb(36, 36, 36);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.services-list li::before {
  content: '∙';
  position: absolute;
  left: 0;
  color: rgb(36, 36, 36);
  font-size: 1.1em;
}

/* Form heading inside contact form column */
.form-heading {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: rgb(7, 7, 7);
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
}

/* Full-width button */
.btn--full {
  width: 100%;
  align-self: stretch;
}

/* ------------------------------------------------------------
   12. PROJECT / CASE STUDY PAGES
   ------------------------------------------------------------ */

/* --- Project Intro (hero area of project pages) --- */
.project-intro {
  background: var(--bg-white);
  padding-top: 6px;
  padding-bottom: 0;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-intro .container {
  display: block;
  max-width: 940px;
  margin-inline: auto;
  width: 100%;
}

.project-intro__hero {
  display: none;
}

.project-intro__tags {
  display: none;
}

.project-intro__text {
  padding-bottom: var(--section-pad-v);
}

.project-intro__client {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(7, 7, 7);
  line-height: 54px;
  margin-bottom: 22px;
}

.project-intro__title {
  font-family: var(--font-heading);
  font-size: 39px;
  font-weight: 300;
  color: rgb(98, 98, 98);
  line-height: 1.2;
  margin-bottom: 42px;
}

.project-intro__body {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: rgb(36, 36, 36);
  line-height: 1.5;
  max-width: 705px;
}

.project-intro__hero img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}

/* --- Project Sections --- */
.project-section {
  padding-block: var(--section-pad-v);
}

.section--gray {
  background: var(--bg-gray);
}

.project-section .container {
  max-width: 1177px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  align-items: center;
}

.project-section__content {
  max-width: 100%;
  padding-right: 40px;
}

/* Sticky text column — WISK page only */
.page-wisk .project-section__content {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

/* Text-only project sections: narrow single column */
.project-section--text-only .container {
  grid-template-columns: 1fr;
  max-width: 725px;
}
.project-section--text-only .project-section__content {
  padding-right: 0;
}

/* Images-only project sections (no text content): full-width single column */
.project-section--images-only .container {
  grid-template-columns: 1fr;
}
.project-section--images-only .project-section__content {
  padding-right: 0;
}

/* Equal columns: 1fr 1fr (e.g. WISK visual identity) */
.project-section--equal .container {
  grid-template-columns: 1fr 1fr;
}

/* Reversed: images left, text right (e.g. WISK web app design) */
.project-section--reversed .container {
  grid-template-columns: 3fr 2fr;
}
.project-section--reversed .project-section__content {
  padding-right: 0;
  padding-left: 40px;
}

/* Image grid inside project sections */
.project-section__images {
  display: grid;
  gap: 12px;
  align-items: start;
}
.project-section__images--2 { grid-template-columns: repeat(2, 1fr); }
.project-section__images--3 { grid-template-columns: repeat(3, 1fr); }
.project-section__images--2of3 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 66.67%; margin-inline: auto; }

/* Full-width image section */
.project-section-full-img {
  width: 100%;
  overflow: hidden;
}
.project-section-full-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Banner sections: no padding, 528px min-height, content vertically centered */
.project-section--banner {
  padding-block: 0;
  min-height: 528px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.project-section--banner .container {
  grid-template-columns: 1fr;
  width: 100%;
  text-align: center;
}

/* Navy blue section (WISK brand) */
.section--navy {
  background: #00305F;
  padding-block: var(--section-pad-v);
}

/* WISK logo + bottle section — desktop */
.wisk-logo-bottle {
  padding-top: 235px;
  padding-bottom: 0;
  overflow: visible;
}
.wisk-logo-bottle__grid {
  max-width: 1177px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 440fr 737fr;
  gap: 0;
  align-items: center;
}
.wisk-logo-bottle__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.wisk-logo-bottle__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.wisk-logo-bottle__bottle {
  display: flex;
  align-items: flex-end;
}
.wisk-logo-bottle__bottle img {
  width: 80%;
  height: auto;
  display: block;
}
.section--navy img {
  display: block;
  max-width: 100%;
  margin-inline: auto;
}
.section--navy.project-section--banner {
  padding-block: 0;
}
.section--navy .project-section__eyebrow,
.section--navy .project-section__heading,
.section--navy .project-section__subheading {
  color: #ffffff;
}
.section--navy.project-section p:not(.project-section__eyebrow):not(.project-section__heading):not(.project-section__subheading) {
  color: rgba(255, 255, 255, 0.85);
}

/* Dark near-black section (SiRP Hierarchy) */
.section--dark {
  background: rgba(12, 2, 2, 0.92);
  padding-block: var(--section-pad-v);
}

/* TCC Section 1 — cacti image: desktop sizing & position
   Overrides inline style (right:0; width:50%; max-width:520px)
   Aligns right edge with container margin; fills ~right half of container */
.tcc-hero-cacti {
  width: 46% !important;
  max-width: none !important;
  right: max(0px, calc((100% - 1177px) / 2)) !important;
}

/* Tiny Cactus autoplay video */
.cactus-video-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.cactus-video-section video {
  width: 100%;
  height: auto;
  display: block;
}

/* Green section (Tiny Cactus Company animation) */
.section--green {
  background: rgb(26, 132, 88);
  padding-block: var(--section-pad-v);
}

.project-section__eyebrow {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(7, 7, 7);
  line-height: 1;
  margin-bottom: 16px;
}

.project-section__heading {
  font-family: var(--font-heading);
  font-size: 39px;
  font-weight: 300;
  color: rgb(98, 98, 98);
  margin-bottom: 20px;
  line-height: 1.2;
}

.project-section__subheading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: rgb(98, 98, 98);
  margin-bottom: 16px;
  line-height: 1.3;
}

.project-section p:not(.project-section__eyebrow):not(.project-section__heading):not(.project-section__subheading) {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: rgb(36, 36, 36);
  line-height: 1.5;
  margin-bottom: 16px;
}

.project-section p:not(.project-section__eyebrow):not(.project-section__heading):not(.project-section__subheading):last-child {
  margin-bottom: 0;
}

.project-section__list {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: rgb(36, 36, 36);
  line-height: 1.5;
  margin-top: 24px;
  padding-left: 24px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-section p strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Override text colors for dark/colored sections — placed after base rules for correct cascade */
.section--dark .project-section__eyebrow,
.section--dark .project-section__heading,
.section--dark .project-section__subheading,
.section--dark.project-section p:not(.project-section__eyebrow):not(.project-section__heading):not(.project-section__subheading) {
  color: #ffffff;
}

.section--green .project-section__eyebrow,
.section--green .project-section__heading,
.section--green .project-section__subheading,
.section--green.project-section p:not(.project-section__eyebrow):not(.project-section__heading):not(.project-section__subheading) {
  color: #ffffff;
}

.project-section__images img,
.project-section__images gif,
.project-section__images video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* --- More Work --- */
.more-work {
  background: transparent;
  padding-top: 110px;
  padding-bottom: 150px;
}

.more-work__label {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 400;
  color: rgb(7, 7, 7);
  text-align: center;
  margin-bottom: 140px;
}

/* --- Made Ventures logo sections --- */
.made-section { padding-block: 80px; }
.made-mascot { padding-block: 40px; text-align: center; }
.made-mascot img { max-width: 160px; margin-inline: auto; }
.made-logo-row { display: grid; gap: 16px; align-items: center; }
.made-logo-row--3 { grid-template-columns: repeat(3, 1fr); }
.made-logo-row--5 { grid-template-columns: repeat(5, 1fr); }
.made-logo-row--1 { grid-template-columns: 1fr; }
.made-logo-row img { width: 100%; height: auto; padding-inline: 30px; box-sizing: border-box; }
.made-logo-featured { padding-block: 40px; text-align: center; display: flex; align-items: center; justify-content: center; }
.made-logo-featured img { max-width: 500px; margin-inline: auto; display: block; }

/* Video background variant (first featured logo section) */
.made-video-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 60px;
}
.made-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.made-video-bg .container {
  position: relative;
  z-index: 1;
}

/* Full-bleed background variant (marble, beach) */
.made-logo-bg {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 60px;
  margin-bottom: 120px;
}
.made-logo-bg img { max-width: 560px; }
.made-wood-section { padding-block: 40px; }
.made-wood-section .made-logo-row--2 { grid-template-columns: repeat(2, 1fr); }

/* Vertical stack: pastel and retro logos displayed one per row */
.made-logo-stack { display: flex; flex-direction: column; gap: 24px; }
.made-logo-stack img { width: 100%; max-width: 620px; height: auto; display: block; margin: 0 auto; }

/* Below 1024px: collapse all multi-column logo grids to single column (matches live site Elementor behaviour) */
@media (max-width: 1024px) {
  .made-logo-row--3,
  .made-logo-row--5 { grid-template-columns: 1fr; }
  .made-wood-section .made-logo-row--2 { grid-template-columns: 1fr; }
  .made-logo-stack img { max-width: 100%; }
  .made-section { padding-block: 40px; }
}

/* --- Made Ventures logo grid (legacy) --- */
.made-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.made-logo-grid img {
  width: 100%;
  height: auto;
  display: block;
}


.project-header {
  background: var(--bg-gray);
  padding-block: var(--section-pad-v) 0;
  overflow: hidden;
}

.project-header .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.project-header__meta {
  padding-bottom: var(--section-pad-v);
}

.project-header__client {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 12px;
}

.project-header__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.project-header__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 460px;
}

.project-header__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.role-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-header__hero-img {
  display: flex;
  align-items: flex-end;
}

.project-header__hero-img img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}

/* Project body content */
.project-body {
  padding-block: var(--section-pad-v);
}

.project-body .container {
  max-width: 840px;
}

.project-body h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 48px;
}

.project-body h2:first-child {
  margin-top: 0;
}

.project-body p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.project-body p:last-child {
  margin-bottom: 0;
}

/* Project image gallery */
.project-gallery {
  padding-block: var(--section-pad-v);
  background: var(--bg-gray);
}

.project-gallery .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-gallery--3col .container {
  grid-template-columns: repeat(3, 1fr);
}

.project-gallery--full .container {
  grid-template-columns: 1fr;
  max-width: 1140px;
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* Project stats bar */
.project-stats {
  background: var(--text-dark);
  color: var(--text-light);
  padding-block: 48px;
}

.project-stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* Next project link */
.next-project {
  background: var(--bg-gray);
  padding-block: 64px;
  text-align: center;
}

.next-project__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 12px;
}

.next-project__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  transition: opacity var(--transition);
}

.next-project a:hover .next-project__title {
  opacity: 0.6;
}

/* ------------------------------------------------------------
   13. TINY CACTUS COMPANY PAGE SPECIFICS
   ------------------------------------------------------------ */
.tcc-scene {
  position: relative;
  background: #f5f0e8;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.tcc-products {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 48px 0;
}

.tcc-products img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

/* Bear animation */
.bear-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.bear-container img {
  position: absolute;
  bottom: 0;
  height: 120px;
  width: auto;
}

/* ------------------------------------------------------------
   14. MADE VENTURES SWATCHES
   ------------------------------------------------------------ */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-block: var(--section-pad-v);
}

.swatch-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ------------------------------------------------------------
   15. SCROLL ANIMATION UTILITIES
   ------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   16. RESPONSIVE — TABLET (≤1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root {
    --section-pad-v: 64px;
  }

  .project-grid {
    gap: 16px;
  }

  /* Project section typography */
  .project-section__eyebrow {
    font-size: 36px;
  }

  .project-section__heading {
    font-size: 30px;
  }

  /* Project intro */
  .project-intro__client {
    font-size: 42px;
  }

  .about-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero__photo {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section__intro {
    padding-left: 0;
  }

  .contact-form {
    margin-inline: 0;
  }

  .project-header .container,
  .project-intro .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-section .container:has(.project-section__images) {
    grid-template-columns: 1fr;
  }

  .project-header__hero-img,
  .project-intro__hero {
    display: none;
  }

  .made-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-stats .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ------------------------------------------------------------
   17. RESPONSIVE — MOBILE (≤768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --section-pad-v: 48px;
  }

  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .site-nav {
    display: none;
  }

  /* Hero — disable fixed attachment on tablet/mobile */
  .hero {
    background-attachment: scroll;
    padding-bottom: 0; /* cancel desktop raise on mobile */
  }

  /* Restore header clearance on home/about — body has padding-top:0 on desktop only */
  body.page-home,
  body.page-about {
    padding-top: var(--header-height);
  }

  /* Home + About page mobile hero: stack text strip above photo strip */
  .page-home .hero {
    flex-direction: column;
    background-image: none;
    min-height: unset;
    align-items: stretch;
  }

  .page-about .hero {
    flex-direction: column;
    background-image: none;
    min-height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    align-items: stretch;
    overflow: hidden;
  }

  .page-about .hero .hero__container, .page-home .hero .hero__container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: rgb(225, 225, 225);
    /* top padding clears any residual overlap; bottom padding balances */
    padding: 36px 0 40px;
    width: 100%;
    max-width: 100%;
  }

  .page-about .hero .hero__text-img, .page-home .hero .hero__text-img {
    width: 85vw !important;
    max-width: 85vw !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .page-home .hero .hero__text-h1 {
    width: fit-content !important;
    max-width: 88vw !important;
    margin: 0 !important;
    flex-shrink: 1 !important;
    text-align: left;
  }

  .page-about .hero .hero__text-h1 {
    width: fit-content !important;
    max-width: 92vw !important;
    margin: 0 !important;
    flex-shrink: 1 !important;
    text-align: center;
  }

  /* Mobile font sizes — scale with viewport width, not desktop vw values */
  .page-home .hero__line1 {
    font-size: clamp(15px, 4.5vw, 24px);
  }

  .page-about .hero__line1 {
    font-size: clamp(18px, 5.5vw, 28px);
  }

  .page-home .hero__line2 {
    font-size: clamp(33px, 10vw, 48px);
    white-space: normal;
  }

  .page-about .hero__line2 {
    font-size: clamp(32px, 10vw, 52px);
    white-space: nowrap;
  }

  .page-about .hero .hero__mobile-photo, .page-home .hero .hero__mobile-photo {
    display: block;
    min-height: 62vh;
    background-color: rgb(225, 225, 225);
    background-image: url('/media/Devon-Carlson-Designer.png');
    background-size: 290px auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  }

  /* Project grid → single column with larger row gap */
  .project-grid,
  .project-grid--full {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Project section typography scale down */
  .project-section__eyebrow {
    font-size: 28px;
  }

  .project-section__heading {
    font-size: 24px;
  }

  .project-section p:not(.project-section__eyebrow):not(.project-section__heading):not(.project-section__subheading) {
    font-size: 17px;
  }

  /* Project intro scale down */
  .project-intro__client {
    font-size: 36px;
    line-height: 1;
  }

  .project-intro__body {
    font-size: 18px;
  }

  /* About page — S2 padding matches live site: 85px top, 15px sides, 50px bottom */
  .page-about .section[aria-label="About Devon Carlson"] {
    padding-block: 0 50px;
  }

  .page-about .section[aria-label="About Devon Carlson"] .container {
    padding-inline: 15px;
  }

  .page-about .about-content {
    padding-top: 85px;
  }

  /* About page scale down */
  .about-page-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .about-content .about-quote {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-content .about-services-heading {
    font-size: 28px;
  }

  .about-content p {
    font-size: 17px;
  }

  .services-list li {
    font-size: 17px;
  }

  /* Form heading */
  .form-heading {
    font-size: 28px;
  }

  /* Work grid top padding */
  .work-grid-section {
    padding-top: 48px;
  }

  /* More work section padding */
  .more-work {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Footer */
  .site-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copy p {
    max-width: 100%;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Project stats */
  .project-stats .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Swatch grid */
  .swatch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Made Ventures logo grid */
  .made-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Project gallery */
  .project-gallery .container,
  .project-gallery--3col .container {
    grid-template-columns: 1fr;
  }

  /* ---- Global container horizontal padding ---- */
  .container {
    padding-inline: 20px;
  }

  /* ---- Contact section: natural height on mobile ---- */
  .contact-section {
    min-height: auto;
  }

  /* ---- Project section vertical rhythm: top-only padding, no bottom ---- */
  .project-section {
    padding-top: 88px;
    padding-bottom: 0;
  }
  /* Banner sections stay zero-padded */
  .project-section--banner {
    padding-top: 0;
    padding-bottom: 0;
  }

  /* ---- Force all project-section containers to single column on mobile,
          overriding any inline grid-template-columns (e.g. TCC, WISK) ---- */
  .project-section .container {
    grid-template-columns: 1fr !important;
  }

  /* ---- Remove side padding from content column when stacked ---- */
  .project-section__content {
    padding-right: 0;
    padding-left: 0;
  }

  /* ---- Stack image grids to single column with breathing room ---- */
  .project-section__images--2,
  .project-section__images--3 {
    grid-template-columns: 1fr;
    padding-inline: 36px;
  }

  /* ---- Image grid: gap between stacked images + breathing room above and below ---- */
  .project-section__images {
    gap: 35px;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  /* ---- TCC sections: stack columns on mobile ---- */
  section:has(.tcc-hero-cacti),
  .project-section[style*="display: flex"] {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  /* Override inline padding-left: 40px on TCC content columns */
  .project-section__content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ------------------------------------------------------------------ */
  /* SECTION 1 — "The future of branding"                                */
  /* Live: ~727px, padTop 50px, cacti 494×471px flowing below text      */
  /* Image is in-flow so it drives section height naturally              */
  /* ------------------------------------------------------------------ */
  section:has(.tcc-hero-cacti) {
    min-height: 0 !important;
    padding-top: 50px !important;
    padding-bottom: 0 !important;
  }

  /* Cacti image: in-flow flex child, 112% wide, offset left to overflow */
  /* Live at 439px: 494px wide, overflows 41px left / 14px right        */
  .tcc-hero-cacti {
    display: block !important;
    position: static !important;
    width: 112% !important;
    max-width: none !important;
    height: auto !important;
    margin-left: -41px !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
  }

  /* ------------------------------------------------------------------ */
  /* SECTION 2 — "It's alive!"                                           */
  /* Live: 90% VH, gif 263×142px at top=123px, centered, text at 324px  */
  /* ------------------------------------------------------------------ */
  .section--green {
    min-height: 90vh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 123px of padding above the gif pushes it to exactly where it lives on live */
  .section--green .project-section__images {
    padding-top: 123px !important;
    padding-bottom: 0 !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .section--green .project-section__images img {
    max-width: 263px !important;
    width: 100% !important;
    border-radius: 14px;
  }

  /* 59px gap between bottom of gif and first text (324 - 123 - 142 = 59) */
  .section--green .project-section__content {
    padding-top: 59px !important;
    padding-bottom: 0 !important;
  }

  /* ------------------------------------------------------------------ */
  /* SECTION 3 — "Desirability 101"                                      */
  /* Live: 105% VH, "Charles" at 127px, charles img at 172px, text at 369px */
  /* ------------------------------------------------------------------ */
  section:has(img[src*="charles"]) {
    min-height: 105vh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 127px above "Charles" eyebrow text */
  section:has(img[src*="charles"]) .container > div:first-child {
    padding-top: 127px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Charles mascot: 171px wide, centered */
  img[src*="charles"] {
    max-width: 171px !important;
    width: 100% !important;
  }

  /* 60px gap before "Desirability 101" text (429 - 369 = 60) */
  section:has(img[src*="charles"]) .project-section__content {
    padding-top: 60px !important;
    padding-bottom: 0 !important;
  }

  /* ---- WISK: scale the 99px rebrand heading ---- */
  .wisk-rebrand-heading {
    font-size: clamp(2rem, 9vw, 4rem) !important;
    line-height: 1.1 !important;
  }

  /* ---- WISK: reversed section — show text before images when stacked ---- */
  .project-section--reversed .project-section__content {
    order: -1;
  }

  /* ---- WISK: logo + bottle section (mobile) ---- */
  .wisk-logo-bottle {
    padding-top: 100px;
    padding-bottom: 0;
    overflow: visible;
  }
  .wisk-logo-bottle__grid {
    display: block;
    padding-inline: 0;
  }
  .wisk-logo-bottle__logo {
    padding: 0 0 40px;
    display: flex;
    justify-content: center;
  }
  .wisk-logo-bottle__logo img {
    width: 70%;
  }
  .wisk-logo-bottle__bottle {
    display: block;
  }
  .wisk-logo-bottle__bottle img {
    width: 100%;
  }

  /* ---- Made Ventures: video bg section — show on mobile, compact height ---- */
  .made-video-bg {
    display: flex;
    min-height: 380px;
    padding-block: 0;
  }
  .made-video-bg .container {
    padding-inline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .made-video-bg .container img {
    max-width: 324px;
  }

  /* ---- Made Ventures: fix logo spacing on mobile ---- */
  /* Live site has ~60px between every logo — match that uniformly */
  .made-section { padding-block: 30px; }   /* 30px bottom + 30px top next section = 60px between sections */
  .made-logo-row { gap: 60px; }            /* 60px between logos stacked within the same section */
  .made-logo-stack { gap: 60px; }          /* same for pastel/retro vertical stacks */

  /* ---- Made Ventures: breakout sections on mobile (marble + beach) ---- */
  .made-logo-bg { margin-top: 40px !important; }
  /* Exact heights from live site measurements at 489px viewport */
  [style*="min-height: 676px"] { min-height: 428px !important; }  /* marble */
  [style*="min-height: 658px"] { min-height: 344px !important; }  /* beach  */
  /* Kill the 40px block padding — min-height controls height, not padding */
  .made-logo-featured.made-logo-bg { padding-block: 0 !important; }
  /* Remove container horizontal padding so image can reach its Elementor-matched width */
  .made-logo-featured.made-logo-bg .container {
    padding-inline: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Match Elementor's exact image widths (square SVGs) at 489px viewport */
  [style*="min-height: 676px"] img { max-width: 408px !important; }  /* teal / marble */
  [style*="min-height: 658px"] img { max-width: 324px !important; }  /* red  / beach  */

  /* Everymade: tile across full viewport width — matches live site bgSize 488px + repeat */
  [style*="min-height: 999px"] {
    min-height: 551px !important;
    background-size: 100vw !important;
    background-repeat: repeat !important;
  }

  /* ---- Project cards: make image wraps fluid (were fixed at 470px) ---- */
  .project-card__img-wrap {
    width: 100%;
  }
  .project-card__img-wrap img {
    width: 100%;
    height: auto;
  }

  /* ---- More work: typography scale + spacing ---- */
  .more-work__label {
    font-size: 22px;
    margin-bottom: 50px;
  }
  .project-card__title {
    font-size: 22px;
  }
  .project-card__tags {
    font-size: 20px;
  }

  /* ---- WISK: disable sticky text column on mobile ---- */
  .page-wisk .project-section__content {
    position: static !important;
    align-self: auto !important;
  }
}

/* ------------------------------------------------------------
   18. RESPONSIVE — SMALL MOBILE (≤480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .hero__text-img {
    width: 60vw;
    margin-right: 5vw;
  }

  .page-about .hero .hero__text-img, .page-home .hero .hero__text-img {
    width: 85vw !important;
    max-width: 85vw !important;
    margin: 0 !important;
  }

  .page-about .hero .hero__text-h1, .page-home .hero .hero__text-h1 {
    width: 85vw !important;
    max-width: 85vw !important;
    margin: 0 !important;
  }

  .swatch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------------------------------------------------
   19. TCC DESKTOP — S2 & S3 sizing (live Elementor values)
   ------------------------------------------------------------ */
@media (min-width: 769px) {
  /* S2 — animation GIF: 60% width matching Elementor widget */
  .section--green .project-section__images img {
    width: 60% !important;
    max-width: none !important;
  }

  /* S3 — Charles mascot: 39% width matching Elementor widget */
  img[src*="charles"] {
    width: 39% !important;
    max-width: none !important;
    border-radius: 14px;
  }
}

/* ------------------------------------------------------------
   20. PRINT
   ------------------------------------------------------------ */
@media print {
  .site-header,
  .hamburger,
  .mobile-nav,
  .site-footer,
  .contact-section {
    display: none;
  }

  body {
    color: #000;
  }

  .hero {
    height: auto;
    background-image: none;
    padding: 40px 0;
  }
}
