@charset "UTF-8";
:root {
  --color-bg-cream: #f1f1f2;
  --color-bg-warm-cream: #fff4c9;
  --color-nav: var(--color-bg-cream);
  --color-body: var(--color-bg-cream);
  --color-primary: #ffae4e;
  --color-dark-grey: #545454;
  --color-font: #3b3d41;
  --color-heading: #ffae4e;
  --color-body-text: #3b3d41;
  --color-footer: #f1f1f2;
  --color-nav-text: #545454;
  --color-hamburger-icon: #000000;
  --color-close-icon: #000000;
  --color-footer-text: #545454;
}

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

html {
  /* This defines what one rem is */
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
}

img {
  width: 100%;
}

/*
0-600px: phone
600-900px: tablet portrait
900-1200: tablet landscape
1200-1800px:  is where our normal styles apply
1800px: big screen
*/
/*
- xs
- sm
- md
- lg
*/
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 1.6rem;
}

p,
a {
  font-size: 1.6rem;
}

.heading-1 {
  font-size: 3.2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 56.25em) {
  .heading-1 {
    font-size: 3.2rem;
  }
}

.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 56.25em) {
  .hero {
    overflow: hidden;
  }
}
.hero-fern {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 3s ease-in-out, transform 3s ease-in-out;
  will-change: opacity, transform;
}
.hero-fern--bottom-left {
  bottom: -80px;
  left: -200px;
}
@media (max-width: 56.25em) {
  .hero-fern--bottom-left {
    bottom: -100px;
    left: -97px;
  }
}
.hero-fern--top-right {
  top: -160px;
  right: -120px;
}
@media (max-width: 56.25em) {
  .hero-fern--top-right {
    top: -90px;
    right: -100px;
  }
}
.hero-logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 50%);
  max-width: 600px;
}
@media (max-width: 56.25em) {
  .hero-logo {
    top: 15%;
  }
}
@media (max-width: 56.25em) {
  .hero-logo-desktop {
    display: none;
  }
}
.hero-logo-desktop .hero-logo-img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
.hero-logo-mobile {
  display: none;
}
@media (max-width: 56.25em) {
  .hero-logo-mobile {
    display: grid;
    place-self: center;
    width: 250px;
  }
}
.hero-logo-mobile .hero-logo-img {
  width: 100%;
  height: auto;
}
.hero-logo-text p {
  font-size: 1.6rem;
  text-align: center;
  color: var(--color-dark-grey);
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.hero-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.fern-image {
  width: 600px;
  height: auto;
  opacity: 0.8;
}
@media (max-width: 56.25em) {
  .fern-image {
    width: 300px;
  }
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 8px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  align-self: flex-start;
  text-decoration: none;
  font-weight: 300;
}
.btn:hover {
  transform: scale(1.05);
}

.card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card--no-hover {
  cursor: default;
}
.card--no-hover:hover {
  transform: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card__image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media (max-width: 56.25em) {
  .card__image-container {
    height: 200px;
  }
}
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.card__image:hover {
  transform: scale(1.05);
}
.card__placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.4rem;
}
.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-grey);
  opacity: 0.6;
  transition: all 0.3s;
}
.card__content {
  padding: 2rem;
}
@media (max-width: 56.25em) {
  .card__content {
    padding: 1.5rem;
  }
}
.card__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-font);
  margin-bottom: 1rem;
  text-transform: lowercase;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 56.25em) {
  .card__title {
    font-size: 1.8rem;
  }
}
.card__description {
  font-size: 1.6rem;
  color: var(--color-font);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 56.25em) {
  .card__description {
    font-size: 1.4rem;
  }
}
.card__number {
  font-size: 6rem;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}
@media (max-width: 56.25em) {
  .card__number {
    font-size: 4rem;
    min-width: 60px;
  }
}

.form {
  z-index: 1000;
  position: relative;
}
.form-group {
  margin-bottom: 2rem;
}
.form-label {
  display: block;
  font-size: 1.6rem;
  color: var(--color-font);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid #e0e0e0;
  font-size: 1.6rem;
  font-family: inherit;
  background-color: white;
  transition: all 0.3s;
  color: var(--color-font);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 174, 78, 0.1);
}
.form-input::placeholder, .form-select::placeholder, .form-textarea::placeholder {
  color: #999;
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #e74c3c;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

.error-message {
  color: #e74c3c;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  min-height: 1.8rem;
}

.character-count {
  font-size: 1.2rem;
  color: #666;
  text-align: right;
  margin-top: 0.5rem;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 56.25em) {
  .form-wrapper {
    padding: 0 2rem;
  }
}

.decoration {
  position: absolute;
  z-index: 1;
  opacity: 0;
  will-change: opacity, transform;
}
.decoration--fern-bottom-left {
  bottom: -80px;
  left: -200px;
}
@media (max-width: 56.25em) {
  .decoration--fern-bottom-left {
    bottom: -100px;
    left: -97px;
  }
}
.decoration--fern-top-right {
  top: -160px;
  right: -120px;
  position: fixed;
  z-index: 10;
}
@media (max-width: 56.25em) {
  .decoration--fern-top-right {
    top: -90px;
    right: -100px;
  }
}
.decoration__image {
  width: 600px;
  height: auto;
  opacity: 0.8;
}
@media (max-width: 56.25em) {
  .decoration__image {
    width: 300px;
  }
}

.bg-pattern {
  position: relative;
  overflow: hidden;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  background-color: var(--color-bg-cream);
  position: relative;
}
@media (max-width: 56.25em) {
  .contact {
    overflow: hidden;
  }
}
@media (max-width: 56.25em) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  text-align: left;
  position: relative;
  overflow: hidden;
}
.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 56.25em) {
  .contact-hero-content {
    padding: 0 2rem;
  }
}
.contact-hero-subtitle {
  font-size: 1.6rem;
  color: var(--color-dark-grey);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 56.25em) {
  .contact-hero-subtitle {
    font-size: 1.4rem;
  }
}

.contact-info-section {
  padding: 6rem 2rem;
  background-color: white;
}
@media (max-width: 56.25em) {
  .contact-info-section {
    padding: 4rem 1rem;
  }
}
.contact-info-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-wrapper {
  text-align: center;
}

.contact-info-title {
  color: var(--color-dark-grey);
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media (max-width: 56.25em) {
  .contact-info-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 56.25em) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info {
  padding: 2rem;
}
.contact-info__title {
  font-size: 3.2rem;
  color: var(--color-font);
  margin-bottom: 2rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 56.25em) {
  .contact-info__title {
    font-size: 3rem;
  }
}
.contact-info__description {
  font-size: 1.6rem;
  color: var(--color-font);
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media (max-width: 56.25em) {
  .contact-info__description {
    font-size: 1.4rem;
  }
}
.contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info__item h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 56.25em) {
  .contact-info__item h3 {
    font-size: 1.6rem;
  }
}
.contact-info__item p {
  font-size: 1.6rem;
  color: var(--color-font);
  margin: 0;
}
@media (max-width: 56.25em) {
  .contact-info__item p {
    font-size: 1.4rem;
  }
}

.contact-form {
  padding: 2rem;
}
@media (max-width: 56.25em) {
  .contact-form {
    padding: 1rem;
  }
}

.contact-form-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
}

.contact-form-title {
  color: var(--color-dark-grey);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media (max-width: 56.25em) {
  .contact-form-title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}

.contact-form .inner {
  display: grid;
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .contact-form .inner {
    gap: 1.5rem;
  }
}

.form-group {
  margin-bottom: 2.5rem;
}
@media (max-width: 56.25em) {
  .form-group {
    margin-bottom: 2rem;
  }
}

.form-label {
  display: block;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 0;
  border-radius: 0;
  font-size: 1.6rem;
  background-color: transparent;
  transition: all 0.2s ease;
  font-family: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #333;
  cursor: pointer;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: #999;
  font-weight: 300;
}

.form-textarea {
  resize: vertical;
  height: 50px;
  line-height: 1.6;
}

.error-message {
  color: #dc3545;
  font-size: 1.2rem;
  margin-top: 0.25rem;
  display: none;
}

.character-count {
  color: #666;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  text-align: right;
  font-weight: 300;
  display: none;
}

.form-input.error,
.form-textarea.error {
  border-color: #dc3545;
}

.success {
  min-height: 650px;
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: var(--color-bg-cream);
}
@media (max-width: 56.25em) {
  .success {
    padding: 2rem 1rem;
  }
}

.success-content {
  max-width: 600px;
  text-align: center;
  padding: 4rem;
}
@media (max-width: 56.25em) {
  .success-content {
    padding: 3rem 2rem;
  }
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-size: 3.2rem;
  color: var(--color-dark-grey);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
@media (max-width: 56.25em) {
  .success-title {
    font-size: 2.4rem;
  }
}

.success-message {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-details {
  text-align: left;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.success-details p {
  font-size: 1.6rem;
  color: var(--color-dark-grey);
  font-weight: 600;
  margin-bottom: 1rem;
}
.success-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.success-details ul li {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}
.success-details ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}
.success-details ul li:last-child {
  margin-bottom: 0;
}

.projects {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg-cream);
  padding: 2rem 0;
  z-index: 1;
}

.projects-header {
  margin-bottom: 4rem;
}

.projects-description {
  font-size: 1.6rem;
  color: var(--color-font);
  text-align: left;
  max-width: 600px;
}

.page__title {
  color: var(--color-heading);
}

.projects-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  z-index: 1;
  position: relative;
}

.project-item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.project-item:hover .project-item__overlay {
  opacity: 0;
}

.project-item__image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.project-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.project-item__placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.4rem;
}

.project-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-grey);
  opacity: 0.6;
  transition: all 0.3s;
}

.project-item__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  color: #f1f1f2;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: lowercase;
  text-align: center;
  margin: 0;
  z-index: 2;
}

.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
@media (max-width: 37.5em) {
  .project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.project-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-cream);
}

.project-modal__content {
  position: relative;
  background: var(--color-bg-cream);
  max-width: 55vw;
  overflow: visible;
  z-index: 1001;
}

.project-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.3s;
}
.project-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.project-modal__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  min-height: 0;
  overflow: hidden;
}

.project-modal__images {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-height: 70vh;
}

.project-modal__image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.project-modal__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-modal__side-nav {
  position: fixed;
  top: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1002;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.project-modal__side-nav:hover {
  background: rgb(0, 0, 0);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.project-modal__side-nav:active {
  transform: scale(0.95);
}
.project-modal__side-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.project-modal__side-nav:disabled:hover {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.project-modal__side-nav.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.project-modal__side-nav--prev {
  left: calc(50% - 40vw - 100px);
}
.project-modal__side-nav--next {
  right: calc(50% - 40vw - 100px);
}

.project-modal__image-counter {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
}

.project-modal__thumbnails {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  background: var(--color-bg-cream);
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.775) transparent;
  flex-shrink: 0;
  z-index: 2;
  padding: 1rem 0;
}
.project-modal__thumbnails::-webkit-scrollbar {
  height: 4px;
}
.project-modal__thumbnails::-webkit-scrollbar-track {
  background: transparent;
}
.project-modal__thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}

.project-modal__thumbnail {
  width: 80px;
  height: 60px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}
.project-modal__thumbnail:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
.project-modal__thumbnail.active {
  border-color: var(--color-primary);
  transform: scale(1.1);
}
.project-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal__info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: none;
}

.project-modal__title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: lowercase;
}

.project-modal__location {
  font-size: 1.8rem;
  color: var(--color-font);
  margin-bottom: 2rem;
  font-weight: 500;
}

.project-modal__description {
  font-size: 1.6rem;
  color: var(--color-font);
  line-height: 1.6;
}

@media (max-width: 56.25em) {
  .projects-grid__items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .project-item__image-container {
    height: 200px;
  }
  .project-item__title {
    font-size: 1.8rem;
    padding: 1.5rem;
  }
  .project-modal__side-nav {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
  .project-modal__side-nav--prev {
    left: calc(50% - 40vw - 85px);
  }
  .project-modal__side-nav--next {
    right: calc(50% - 40vw - 85px);
  }
  .project-modal__thumbnails {
    padding: 0.5rem;
    max-height: 70%;
  }
  .project-modal__thumbnail {
    width: 50px;
    height: 40px;
  }
}
@media (max-width: 37.5em) {
  .projects {
    padding: 1rem 0;
  }
  .projects-header {
    margin-bottom: 2rem;
  }
  .projects-header .container {
    padding: 0 1.5rem;
  }
  .projects-description {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
  }
  .projects-grid .container {
    padding: 0 1.5rem;
  }
  .projects-grid__items {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .project-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .project-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .project-item__image-container {
    height: 220px;
  }
  .project-item__title {
    font-size: 1.8rem;
    padding: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
  }
  .project-modal__content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 0;
    position: relative;
  }
  .project-modal__body {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
  }
  .project-modal__images {
    max-height: 50vh;
    min-height: 200px;
  }
  .project-modal__side-nav {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    position: fixed;
  }
  .project-modal__side-nav--prev {
    left: 1rem;
  }
  .project-modal__side-nav--next {
    right: 1rem;
  }
  .project-modal__side-nav:hover {
    transform: scale(1.05);
  }
  .project-modal__image-counter {
    bottom: 2rem;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
  .project-modal__thumbnails {
    padding: 1rem;
    gap: 0.8rem;
    max-height: 80px;
  }
  .project-modal__thumbnail {
    width: 60px;
    height: 45px;
  }
  .project-modal__thumbnail:hover {
    transform: scale(1.08);
  }
  .project-modal__thumbnail.active {
    transform: scale(1.15);
  }
  .project-modal__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 37.5em) {
  .projects-grid__items {
    gap: 1rem;
  }
  .project-item__image-container {
    height: 180px;
  }
  .project-item__title {
    font-size: 1.6rem;
    padding: 1.2rem;
  }
  .project-modal__content {
    max-width: 98vw;
    margin: 0;
  }
  .project-modal__images {
    max-height: 40vh;
    min-height: 150px;
  }
  .project-modal__thumbnails {
    max-height: 60px;
    padding: 0.8rem;
  }
  .project-modal__thumbnail {
    width: 50px;
    height: 38px;
  }
  .project-modal__side-nav {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  .project-modal__side-nav--prev {
    left: 0.5rem;
  }
  .project-modal__side-nav--next {
    right: 0.5rem;
  }
}
@media (max-width: 56.25em) {
  .project-item:hover {
    transform: none;
  }
  .project-modal__side-nav:hover {
    transform: scale(1.02);
  }
  .project-modal__thumbnail:hover {
    transform: scale(1.02);
  }
}
.process {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg-cream);
  z-index: 1;
}

.process-header {
  margin-bottom: 4rem;
}

.process-description {
  font-size: 1.6rem;
  color: var(--color-font);
  text-align: left;
  max-width: 600px;
}

.page__title {
  color: var(--color-heading);
}

.process-steps__items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
  z-index: 1;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 0;
}
.process-step:nth-child(even) .process-step__image {
  order: -1;
}

.process-step__number {
  font-size: 8rem;
  color: var(--color-heading);
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  min-width: 50px;
  text-align: left;
}

.process-step__content {
  flex: 1;
}

.process-step__title {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color-font);
  margin-bottom: 1.5rem;
  text-transform: lowercase;
  font-family: "Montserrat", sans-serif;
}

.process-step__description {
  font-size: 1.6rem;
  color: var(--color-font);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.process-step__image {
  height: auto;
  max-width: 500px;
  overflow: hidden;
  flex-shrink: 0;
}

.process-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.process-step__img:hover {
  transform: scale(1.05);
}

@media (max-width: 56.25em) {
  .process-steps__items {
    gap: 3rem;
  }
  .process-step {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .process-step:nth-child(even) .process-step__image {
    order: 0;
  }
  .process-step__number {
    font-size: 4rem;
    min-width: auto;
  }
  .process-step__title {
    font-size: 2rem;
  }
  .process-step__description {
    font-size: 1.4rem;
  }
  .process-step__image {
    width: 100%;
    height: 180px;
  }
}
.style-guide {
  padding: 4rem 0;
  background-color: var(--color-bg-cream);
}
.style-guide__header {
  text-align: center;
  margin-bottom: 4rem;
}
.style-guide__header h2 {
  color: var(--color-dark-grey);
  margin-bottom: 1rem;
}
.style-guide__header p {
  font-size: 1.8rem;
  color: var(--color-font);
  max-width: 600px;
  margin: 0 auto;
}
.style-guide__section {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.style-guide__section h3 {
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .color-grid {
    grid-template-columns: 1fr;
  }
}

.color-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.color-item .color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
}
.color-item .color-info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-font);
}
.color-item .color-info p {
  margin: 0.2rem 0;
  font-size: 1.4rem;
  color: #666;
}

.typography-examples {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.typography-item {
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.typography-item h1,
.typography-item h2,
.typography-item h3,
.typography-item h4,
.typography-item h5 {
  margin: 0 0 1rem 0;
  color: var(--color-font);
}
.typography-item p {
  margin: 0;
  color: #666;
  font-size: 1.4rem;
}

.button-examples {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.button-item {
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.button-item h4 {
  margin: 0 0 1rem 0;
  color: var(--color-font);
}
.button-item p {
  margin: 0 0 1rem 0;
  color: #666;
}

.code-example {
  margin-top: 1rem;
  padding: 1rem;
  background: #2d3748;
  border-radius: 4px;
  overflow-x: auto;
}
.code-example code {
  color: #e2e8f0;
  font-family: "Courier New", monospace;
  font-size: 1.4rem;
}

.card-examples .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .card-examples .card-grid {
    grid-template-columns: 1fr;
  }
}

.form-examples .form {
  max-width: 500px;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.form-examples .form-group {
  margin-bottom: 1.5rem;
}
.form-examples .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-font);
}
.form-examples .form-group input,
.form-examples .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.form-examples .form-group input:focus,
.form-examples .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(255, 174, 78, 0.2);
}
.form-examples .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.spacing-examples {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spacing-item h4 {
  margin: 0 0 1rem 0;
  color: var(--color-font);
}

.container-demo {
  padding: 2rem;
  border: 2px dashed var(--color-primary);
  border-radius: 8px;
  background: rgba(255, 174, 78, 0.1);
  text-align: center;
}
.container-demo p {
  margin: 0;
  color: var(--color-font);
}

.bg {
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.bg.bg-cream {
  background-color: var(--color-bg-cream);
}
.bg.bg-whitecream {
  background-color: var(--color-bg-whitecream);
}
.bg p {
  margin: 0;
  color: var(--color-font);
}

.transition-examples .transition-item {
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
}
.transition-examples .transition-item h4 {
  margin: 0 0 1rem 0;
  color: var(--color-font);
}
.transition-examples .transition-item p {
  margin: 0.5rem 0;
  color: #666;
}

.transition-demo {
  margin-top: 1rem;
  text-align: center;
}

.transition-box {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: var(--color-primary);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.transition-box:hover {
  transform: scale(1.05);
}

.logo-sm {
  position: absolute;
  left: 20px;
}
.logo-sm .nav-logo-img {
  width: 50px;
  height: auto;
  transition: all 0.3s ease;
}
.logo-sm svg {
  width: 50px;
}

.nav {
  background-color: var(--color-nav);
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  grid-gap: 1.5rem;
}
.nav-link {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: var(--color-nav-text);
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.nav-link:hover {
  border-bottom: 1px solid var(--color-nav-text);
}
@media (max-width: 56.25em) {
  .nav {
    display: none;
  }
}

.hamburger-btn {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1100;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--color-dark-grey);
}
.hamburger-btn span {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--color-hamburger-icon);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 56.25em) {
  .hamburger-btn {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
  }
}

.hamburger-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  background: var(--color-nav);
  transition: opacity 0.4s;
  width: 100vw;
  height: 100vh;
}
.hamburger-menu-overlay.open {
  display: block;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hamburger-menu-grid {
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.hamburger-menu-bg {
  display: none;
}

.hamburger-logo {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}
.hamburger-logo svg {
  width: 150px;
  height: auto;
  margin-top: 2rem;
}

.hamburger-menu-content {
  background: none;
  color: var(--color-dark-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 3rem;
  position: relative;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.hamburger-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-close-icon);
  font-size: 3rem;
  cursor: pointer;
  z-index: 2;
}

.hamburger-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.hamburger-nav li {
  margin-bottom: 2rem;
}

.hamburger-nav a {
  color: var(--color-nav-text);
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  text-transform: uppercase;
}

.hamburger-nav a:hover {
  color: var(--color-primary);
}

.hamburger-contact {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #eee;
}

.hamburger-contact a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.hamburger-contact a:hover {
  color: #fff;
}

.hamburger-social {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hamburger-social a {
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: color 0.2s;
}

.hamburger-social a:hover {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .hamburger-menu-content {
    padding: 2rem 1.5rem;
  }
  .hamburger-nav a {
    font-size: 2rem;
  }
}
@media (max-width: 37.5em) {
  .hamburger-menu-content {
    padding: 1.5rem 1rem;
  }
  .hamburger-nav a {
    font-size: 1.8rem;
  }
}
.hamburger-menu-overlay.open {
  display: block;
}
.hamburger-menu-overlay.open .footer {
  display: none;
}

.footer {
  border-top: 0.5px solid rgba(var(--color-dark-grey), 0.1);
  background-color: var(--color-footer);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer .icon {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  text-decoration: none;
}
.footer .icon:hover {
  text-decoration: underline;
}
.footer .icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  fill: var(--color-dark-grey);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.footer * {
  color: var(--color-footer-text);
  font-family: "Montserrat", sans-serif;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}
.footer-section {
  display: grid;
  justify-self: center;
  text-align: center;
}
.footer-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 0.8rem;
}
.footer-section li a {
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
  display: inline-block;
}
.footer-section svg {
  max-width: 200px;
  height: auto;
  transition: filter 0.3s ease;
}
.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .contact-info a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.footer .contact-info a span {
  font-size: 1.4rem;
}
.footer .social-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 4px;
  position: relative;
  overflow: hidden;
}
.footer .social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--color-primary), 0.1), transparent);
  transition: left 0.5s ease;
}
.footer .social-links a:hover svg {
  transform: scale(1.1);
}
.footer-social-links {
  display: flex;
  gap: 1rem;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.footer-social-links a:hover {
  background-color: #555;
}
.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(var(--color-dark-grey), 0.1);
  position: relative;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}
.footer-bottom p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
}
.footer-bottom p a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .footer-section {
    text-align: center;
  }
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-section svg {
    max-width: 150px;
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer .contact-info {
    align-items: center;
  }
  .footer .contact-info a {
    justify-content: center;
    text-align: center;
  }
}
body {
  background-color: var(--color-body);
}

.page {
  position: static;
  min-height: 90vh;
  padding: 2rem 0;
  z-index: 1;
}
@media (max-width: 56.25em) {
  .page {
    min-height: 100vh;
    overflow: hidden;
  }
}
.page__header {
  margin-top: 8rem;
  margin-bottom: 4rem;
  padding-top: 5rem;
  text-align: left;
}
.page__title {
  font-size: 3.2rem;
  color: var(--color-heading);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: left;
}
@media (max-width: 56.25em) {
  .page__title {
    font-size: 3rem;
  }
}
.page__description {
  font-size: 1.6rem;
  color: var(--color-body-text);
  text-align: left;
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 56.25em) {
  .page__description {
    font-size: 1.4rem;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2-columns {
  grid-template-columns: 1fr 1fr;
  padding: 0 !important;
}
@media (min-width: 56.25em) and (max-width: 112.5em) {
  .grid--2-columns .container {
    padding: 0 !important;
  }
}
@media (max-width: 56.25em) {
  .grid--2-columns {
    grid-template-columns: 1fr;
  }
}
.grid--3-columns {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
@media (max-width: 56.25em) {
  .grid--3-columns {
    gap: 2rem;
  }
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .grid--auto-fit {
    grid-template-columns: 1fr;
  }
}

.w1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 56.25em) {
  .container {
    padding: 0 2rem;
  }
}
.container--narrow {
  max-width: 800px;
}
.container--wide {
  max-width: 1400px;
}

.page__header + .section {
  padding-top: 0;
}

.section--small {
  padding: 4rem 0;
}
@media (max-width: 56.25em) {
  .section--small {
    padding: 3rem 0;
  }
}
.section--large {
  padding: 8rem 0;
}
@media (max-width: 56.25em) {
  .section--large {
    padding: 6rem 0;
  }
}

.bg-section {
  padding: 6rem 2rem;
}
@media (max-width: 56.25em) {
  .bg-section {
    padding: 4rem 0;
  }
}

/*# sourceMappingURL=main.css.map */