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

body {
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  width: 100%;
  background: #ffffff;
}

.navbar {
  width: 100%;
  height: 170px;
  background: #D7EEEE;
  display: flex;
  align-items: center;
}

.navbar-inner {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 400px;
  width: auto;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 75px;
}

.nav-links a {
  font-family: 'Alata', sans-serif;
  font-size: 30px;
  color: #07303C;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #307589;
  text-decoration: underline;
}

.hero {
  width: 100%;
  background: #ffffff;
}

.hero-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 100px 100px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.hero-photo {
  width: 500px;
  height: 600px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
  border: 2px solid #d0d0d0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.hero-headline {
  font-family: 'Jua', sans-serif;
  font-weight: 400;
  font-size: 50px;
  color: #07303C;
  line-height: 1.4;
}

.hero-sub {
  margin-top: 45px;
  font-family: 'Amiko', sans-serif;
  font-size: 35px;
  color: #07303C;
}

.work-section {
  width: 100%;
  background: #F7EEE3;
  margin-top: 10px;
}

.work-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 40px 50px;
}

.work-title {
  font-family: 'Amiko', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #07303C;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: 412px 412px 412px;
  grid-template-rows: 412px 412px;
  justify-content: center;
  gap: 18px;
}

.grid-img {
  width: 412px;
  height: 412px;
  object-fit: cover;
  display: block;
  border: 2px solid #d0d0d0;
}

.portfolio-btn-wrap {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 15px;
}

.btn {
  display: inline-block;
  font-family: 'Alata', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  background: #307589;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  padding: 18px 38px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn:hover {
  background: #245e6e;
  transform: scale(1.02);
}

.contact-section {
  width: 100%;
  background: #F7EEE3;
  margin-top: 100px;
}

.contact-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 10px 50px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-family: 'Amiko', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #07303C;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
}

.contact-sub {
  font-family: 'Amiko', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #07303C;
  text-align: center;
  max-width: 1000px;
  line-height: 1.6;
}

.footer {
  width: 100%;
  height: 200px;
  background: #307589;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  color: #D7EEEE;
  white-space: nowrap;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-icons a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.icon-svg {
  width: 65px;
  height: 65px;
  fill: #ffffff;
  transition: opacity 0.2s ease;
}

.footer-icons a:hover .icon-svg {
  opacity: 0.75;
}

.nav-links a.active {
  color: #307589;
  text-decoration: underline;
}

.work-page-title {
  width: 100%;
  background: #ffffff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 0;
}

.work-page-title h1 {
  font-family: 'Jua', sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #07303C;
}

.work-gallery {
  width: 100%;
  background: #ffffff;
  padding-bottom: 50px;
}

.work-gallery-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 50px 50px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-row {
  display: flex;
  gap: 18px;
  width: 100%;
  align-items: center;
}

.row-3 {
  align-items: stretch;
}

.row-3 .gallery-item {
  flex: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
  border: 2px solid #d0d0d0;
}

.img-angelou  { flex: 1; height: 450px; }
.img-tote     { width: 450px; height: 450px; flex-shrink: 0; }

.img-cookbook { width: 450px; height: 450px; flex-shrink: 0; }
.img-golden   { flex: 1; height: 450px; }

.row-3 .gallery-item { height: 450px; flex: 1; }

.img-wine     { width: 450px; height: 450px; flex-shrink: 0; }
.img-brews    { flex: 1; height: 450px; }

.img-unique   { flex: 1; height: 450px; }
.img-artspot  { width: 450px; height: 450px; flex-shrink: 0; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(238, 254, 254, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.gallery-overlay span {
  font-family: 'Alata', sans-serif;
  font-size: 30px;
  color: #07303C;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0 20px;
}

.gallery-item:hover .gallery-overlay {
  background-color: rgba(238, 254, 254, 0.5);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
}

.gallery-link {
  display: contents;
  text-decoration: none;
}

.about-section {
  width: 100%;
  background: #F7EEE3;
  margin-top: 75px;
  margin-bottom: 50px;
}

.about-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 20px 50px 40px 50px;
}

.about-title {
  font-family: 'Jua', sans-serif;
  font-size: 50px;
  color: #07303C;
  margin-bottom: 50px;
  margin-top: 75px;
  text-align: center;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 50px;
}

.about-text p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.1;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 20px;
}

.about-photo {
  width: 470px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.about-photo-col .btn {
  margin-top: 30px;
  margin-bottom: 0;
  border-radius: 100px;
}

.contact-page-section {
  width: 100%;
  background: #F7EEE3;
  margin-top: 100px;
  margin-bottom: 0px;
}

.contact-page-inner {
  width: 1440px;
  margin: 0 auto;
  padding: 40px 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-page-title {
  font-family: 'Jua', sans-serif;
  font-size: 48px;
  color: #07303C;
  margin-bottom: 75px;
}

.contact-email {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  margin-bottom: 35px;
}

.contact-email a {
  color: #07303C;
  text-decoration: none;
}

.contact-email a:hover {
  color: #307589;
  text-decoration: underline;
}

.contact-blurb {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  margin-bottom: 35px;
  max-width: 600px;
  text-align: left;
  margin-left: 120px;
}

.contact-page-inner .btn {
  margin-top: 0;
  margin-bottom: 50px;
}

.dj-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.dj-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.dj-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.dj-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.dj-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.dj-info .bold {
  font-weight: 700;
}


.dj-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.dj-btn {
  font-size: 32px;
  padding: 24px 56px;
  margin-top: 0;
  margin-bottom: 20px;
  align-self: flex-start;
  border-radius: 100px;
}

.dj-inner .btn {
  margin-top: 0;
  margin-bottom: 20px;
}

.p2-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p2-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p2-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p2-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p2-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p2-info .bold {
  font-weight: 700;
}

.p2-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p2-img-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.p2-img-half {
  flex: 1;
  width: 50%;
  height: auto;
  display: block;
  border: 2px solid #d0d0d0;
}

.p3-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p3-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p3-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p3-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p3-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p3-info .bold {
  font-weight: 700;
}

.p3-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p3-img-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.p3-img-half {
  flex: 1;
  width: 50%;
  height: auto;
  display: block;
  border: 2px solid #d0d0d0;
}

.p4-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p4-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p4-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p4-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p4-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p4-info .bold {
  font-weight: 700;
}

.p4-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p4-img-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.p4-img-half {
  flex: 1;
  width: 50%;
  height: auto;
  display: block;
  border: 2px solid #d0d0d0;
}

.p5-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p5-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p5-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p5-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p5-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p5-info .bold {
  font-weight: 700;
}

.p5-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p6-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p6-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p6-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p6-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p6-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p6-info .bold {
  font-weight: 700;
}

.p6-img-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.p6-img-half {
  flex: 1;
  width: 50%;
  height: auto;
  display: block;
  border: 2px solid #d0d0d0;
}

.p6-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p7-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p7-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p7-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p7-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p7-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p7-info .bold {
  font-weight: 700;
}

.p7-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p7-bottom-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.p7-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p7-stack-img {
  width: 100%;
  height: auto;
  display: block;
  flex: 1;
  border: 2px solid #d0d0d0;
}

.p7-single {
  flex: 1;
  display: flex;
}

.p7-single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid #d0d0d0;
}

.p8-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p8-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p8-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p8-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p8-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p8-info .bold {
  font-weight: 700;
}

.p8-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p8-img-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.p8-img-half {
  flex: 1;
  width: 50%;
  height: auto;
  display: block;
  border: 2px solid #d0d0d0;
}

.p9-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p9-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p9-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p9-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p9-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p9-info .bold {
  font-weight: 700;
}

.p9-btn-wrap {
  margin-bottom: 70px;
}

.p9-btn {
  font-size: 32px;
  padding: 24px 56px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 100px;
}

.p9-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p9-logo-wrap {
  background: #291C17;
  margin-bottom: 20px;
}

.p9-logo-wrap .p9-img {
  margin-bottom: 0;
}

.p10-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p10-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p10-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p10-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p10-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p10-info .bold {
  font-weight: 700;
}

.p10-btn-wrap {
  margin-bottom: 70px;
}

.p10-btn {
  font-size: 32px;
  padding: 24px 56px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 100px;
}

.p10-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.p11-section {
  width: 100%;
  background: #ffffff;
  margin-top: 50px;
  margin-bottom: 0px;
}

.p11-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p11-title {
  font-family: 'Jua', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #07303C;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

.p11-info {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 70px;
}

.p11-info p {
  font-family: 'Amiko', sans-serif;
  font-size: 32px;
  color: #07303C;
  line-height: 1.5;
  text-align: left;
}

.p11-info .bold {
  font-weight: 700;
}

.p11-btn-wrap {
  margin-bottom: 70px;
}

.p11-btn {
  font-size: 32px;
  padding: 24px 56px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 100px;
}

.p11-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border: 2px solid #d0d0d0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
  gap: 8px;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger .bar {
  display: block;
  width: 36px;
  height: 4px;
  background: #07303C;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

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

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 30px;
  gap: 0;
  border-top: 2px solid rgba(7,48,60,0.15);
  box-shadow: 0 8px 24px rgba(7,48,60,0.1);
}

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

.mobile-nav a {
  font-family: 'Alata', sans-serif;
  font-size: 32px;
  color: #07303C;
  text-decoration: none;
  padding: 18px 0;
  width: 100%;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #307589;
  background: rgba(48,117,137,0.08);
}

/* =============================================
   DESKTOP/MOBILE GALLERY VISIBILITY
   ============================================= */

/* Mobile gallery hidden by default (desktop shows) */
.mobile-gallery {
  display: none;
}

.mobile-gallery-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px 50px;
}

.mob-row {
  width: 100%;
}

/* Full-width row */
.mob-full .gallery-link {
  display: block;
  width: 100%;
}

.mob-full .gallery-item {
  width: 100%;
  height: 300px;
}

/* Two-up row */
.mob-half {
  display: flex;
  gap: 12px;
}

.mob-half .gallery-link {
  flex: 1;
  display: block;
}

.mob-half .gallery-item {
  width: 100%;
  height: 180px;
}

/* Shared gallery item styles for mobile gallery */
.mobile-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mobile-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid #d0d0d0;
  transition: filter 0.3s ease;
}

.mobile-gallery .gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(238, 254, 254, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.mobile-gallery .gallery-overlay span {
  font-family: 'Alata', sans-serif;
  font-size: 20px;
  color: #07303C;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0 10px;
}

.mobile-gallery .gallery-item:hover .gallery-overlay {
  background-color: rgba(238, 254, 254, 0.5);
}

.mobile-gallery .gallery-item:hover .gallery-overlay span {
  opacity: 1;
}

@media (max-width: 900px) {

  /* Navbar */
  .navbar {
    height: 100px;
    position: relative;
  }

  .navbar-inner {
    width: 100%;
    padding: 0 24px;
  }

  .nav-logo {
    height: 220px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    top: 100px;
  }

  .desktop-gallery {
    display: none;
  }

  .mobile-gallery {
    display: block;
  }

  .work-page-title h1 {
    font-size: 34px;
  }

  .hero-inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 32px;
  }

  .hero-photo {
    width: 100%;
    max-width: 480px;
    height: 380px;
  }

  .hero-text {
    padding-top: 0;
    text-align: center;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 24px;
    margin-top: 24px;
  }

  .work-inner {
    width: 100%;
    padding: 30px 20px;
  }

  .work-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .grid-img {
    width: 100%;
    height: 280px;
  }

  .btn {
    font-size: 22px;
    padding: 14px 28px;
    border-radius: 100px;
  }

  .contact-section {
    margin-top: 50px;
  }

  .contact-inner {
    width: 100%;
    padding: 20px 24px 40px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-sub {
    font-size: 22px;
  }

  .footer {
    height: auto;
    padding: 30px 24px;
    margin-top: 50px;
  }

  .footer-inner {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-icons {
    order: -1;
  }

  .footer-copy {
    font-size: 18px;
    text-align: center;
    white-space: normal;
  }

  .icon-svg {
    width: 50px;
    height: 50px;
  }

  /* about page starts here */
  .about-inner {
    width: 100%;
    padding: 20px 24px 40px;
  }

  .about-title {
    font-size: 34px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-text {
    margin-left: 0;
    gap: 18px;
  }

  .about-text p {
    font-size: 22px;
  }

  .about-photo-col {
    width: 100%;
    align-items: center;
  }

  .about-photo {
    width: 100%;
    max-width: 400px;
  }

  .about-section {
    margin-top: 40px;
  }

  /* vontact page starts here*/
  .contact-page-inner {
    width: 100%;
    padding: 30px 24px 40px;
  }

  .contact-page-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .contact-email {
    font-size: 22px;
  }

  .contact-blurb {
    font-size: 22px;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .contact-page-section {
    margin-top: 50px;
  }

  /* here are the project ages */
  .dj-inner,
  .p2-inner, .p3-inner, .p4-inner, .p5-inner,
  .p6-inner, .p7-inner, .p8-inner, .p9-inner,
  .p10-inner, .p11-inner {
    padding: 0 20px;
  }

  .dj-title,
  .p2-title, .p3-title, .p4-title, .p5-title,
  .p6-title, .p7-title, .p8-title, .p9-title,
  .p10-title, .p11-title {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .dj-info p,
  .p2-info p, .p3-info p, .p4-info p, .p5-info p,
  .p6-info p, .p7-info p, .p8-info p, .p9-info p,
  .p10-info p, .p11-info p {
    font-size: 22px;
  }

  .p2-img-row, .p3-img-row, .p4-img-row,
  .p6-img-row, .p8-img-row {
    flex-direction: column;
    border: none;
    gap: 12px;
  }

  .p2-img-half, .p3-img-half, .p4-img-half,
  .p6-img-half, .p8-img-half {
    width: 100%;
    border: 2px solid #d0d0d0;
  }

  .p7-bottom-row {
    flex-direction: column;
    gap: 12px;
  }

  .p7-single-img {
    height: auto;
    object-fit: unset;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    height: 300px;
  }

  .hero-headline {
    font-size: 28px;
  }

  .nav-logo {
    height: 170px;
  }
}