/* Google Fonts: Playfair Display (headings), Lato (body) */
:root {
  --gold: #CBA135;
  --black: #000;
  --white: #fff;
  --grey-light: #F5F5F5;
  --grey: #E0E0E0;
  --serif: 'Playfair Display', serif;
  --sans: 'Lato', Arial, sans-serif;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

/* --- Sticky/Floating Navbar with Shadow --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}
.navbar {
  position: relative;
  transition: box-shadow 0.3s, background 0.3s;
}
.sticky-nav {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(203,161,53,0.10), 0 1.5px 8px rgba(0,0,0,0.04);
  border-radius: 0 0 1.5rem 1.5rem;
}

/* --- Navbar Alignment Fix --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem 1.2rem 2rem;
  background: var(--white);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(203,161,53,0.04);
  gap: 0;
}

.navbar .logo {
  flex: 0 0 auto;
  margin-right: 2.5rem;
}

.navbar .nav-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.navbar .nav-links a.cta {
  margin-left: 0;
}

.navbar .nav-links .cta {
  flex: 0 0 auto;
}

/* --- Nav Icons --- */
.nav-links a .nav-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5em;
  font-size: 1.2em;
  vertical-align: middle;
}

.nav-links a.cta .nav-icon {
  font-size: 1.3em;
  margin-right: 0.7em;
}

/* Adjust spacing for icons */
.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--sans);
  font-size: 1.1rem;
  position: relative;
  padding: 0.3em 0.5em 0.3em 0.5em;
  transition: color 0.2s;
  border-radius: 0.5em;
  background: none;
  display: flex;
  align-items: center;
}

.nav-links a:not(.cta):hover, .nav-links a:not(.cta).active {
  color: var(--gold);
}

.nav-links a:not(.cta)::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
  margin: 0.2em auto 0 auto;
  border-radius: 2px;
}

.nav-links a:not(.cta):hover::after, .nav-links a:not(.cta).active::after {
  width: 80%;
}

.nav-links a.cta {
  background: linear-gradient(90deg, #CBA135 60%, #e0c176 100%);
  color: var(--white) !important;
  padding: 0.6em 1.8em;
  border-radius: 2em;
  font-weight: 800;
  font-size: 1.1rem;
  margin-left: 2.5rem;
  box-shadow: 0 2px 12px rgba(203,161,53,0.10);
  border: none;
  position: relative;
  z-index: 1;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  letter-spacing: 0.5px;
}

.nav-links a.cta:hover, .nav-links a.cta:focus {
  background: var(--black);
  color: var(--gold) !important;
  box-shadow: 0 4px 24px rgba(203,161,53,0.18);
  transform: translateY(-2px) scale(1.04);
}

.logo {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1px;
  margin-right: 2.5rem;
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

/* Enhanced hero overlay for optimal contrast */
.hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 32px rgba(203,161,53,0.08);
  overflow: hidden;
}
/* Remove hero overlay and lighten hero-content background */
.hero::before {
  display: none;
}
.hero-content {
  background: rgba(0,0,0,0.10); /* lighter, almost transparent */
}
/* Improve hero headline readability */
.hero h1 {
  color: var(--gold);
  text-shadow: 0 4px 16px rgba(0,0,0,0.7);
  background: none;
  display: inline-block;
  padding: 0;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.hero p {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.btn, .btn-outline {
  display: inline-block;
  padding: 0.5em 1.5em;
  border-radius: 2em;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--sans);
  transition: background var(--transition), color var(--transition), border var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(203,161,53,0.08);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(90deg, #CBA135 60%, #e0c176 100%);
  color: var(--white) !important;
  border: none;
}

.btn-gold:hover, .btn-gold:focus {
  background: var(--black);
  color: var(--gold) !important;
}

.section {
  padding: 4rem 1rem 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(203,161,53,0.06), 0 1.5px 8px rgba(0,0,0,0.03);
  margin-bottom: 2.5rem;
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--grey);
  padding: 4rem 2rem 3rem 2rem;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--black);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.25em;
}

h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.services-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-card, .service-detail {
  background: var(--grey-light);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 2px 12px rgba(203,161,53,0.06);
  text-align: center;
  margin-bottom: 1rem;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover, .service-detail:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(203,161,53,0.12);
}
.service-price {
  color: var(--gold);
  font-weight: 700;
  margin-left: 0.5em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonials-grid blockquote {
  font-style: italic;
  background: var(--grey-light);
  border-left: 4px solid var(--gold);
  margin: 0;
  padding: 2rem 2rem 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(203,161,53,0.06);
  position: relative;
  min-height: 120px;
  transition: box-shadow 0.2s;
}
.testimonials-grid blockquote:hover {
  box-shadow: 0 8px 32px rgba(203,161,53,0.12);
}

.testimonials-slider blockquote {
  font-style: italic;
  background: var(--grey-light);
  border-left: 4px solid var(--gold);
  margin: 0 auto 1rem auto;
  padding: 1.5rem 2rem;
  max-width: 600px;
  border-radius: 0.5rem;
}

.client {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.cta-section {
  background: var(--grey-light);
  text-align: center;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}

.booking-form {
  background: var(--grey-light);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(203,161,53,0.06);
  padding: 2rem 2rem 1.5rem 2rem;
  max-width: 500px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-form label {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.2em;
}
.booking-form input, .booking-form select {
  padding: 0.7em 1em;
  border-radius: 0.5em;
  border: 1.5px solid var(--grey);
  font-size: 1rem;
  margin-bottom: 1em;
  font-family: var(--sans);
  background: var(--white);
  transition: border 0.2s;
}
.booking-form input:focus, .booking-form select:focus {
  border: 1.5px solid var(--gold);
  outline: none;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.about-founder, .about-vision, .about-values {
  background: var(--grey-light);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(203,161,53,0.06);
  padding: 2rem 1.5rem;
  min-width: 250px;
  max-width: 350px;
  margin-bottom: 1rem;
  border-top: 3px solid var(--gold);
}
.about-values ul {
  padding-left: 1.2em;
}
.about-values li {
  margin-bottom: 0.7em;
}

footer {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -2px 12px rgba(203,161,53,0.04);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-content a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-content a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-content span {
  color: var(--grey);
}

.cookie-notice {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  font-size: 1rem;
}

.cookie-notice button {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 1em;
  padding: 0.3em 1em;
  margin-left: 1em;
  cursor: pointer;
  font-weight: 700;
}

.cookie-notice a {
  color: var(--gold);
  margin-left: 1em;
  text-decoration: underline;
}

/* Portfolio Gallery Styles */
.portfolio-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: var(--grey-light);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.portfolio-image {
  position: relative;
  flex: 1 1 200px;
  max-width: 300px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--grey);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) blur(1px) brightness(0.95);
}

.portfolio-image .label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.2em 0.8em;
  border-radius: 1em;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 2;
}

.portfolio-caption {
  text-align: center;
}

.portfolio-caption h3 {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.portfolio-caption p {
  color: var(--black);
  font-size: 1.1rem;
}

.portfolio-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
}

/* Portfolio Slider Styles */
.portfolio-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  margin-bottom: 2rem;
  background: var(--grey-light);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(203,161,53,0.06);
  padding: 2rem 1.5rem;
}
.slider-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(203,161,53,0.08);
}
.slider-btn:hover, .slider-btn:focus {
  background: var(--black);
  color: var(--gold);
  outline: none;
}
.slider-btn:active {
  transform: scale(0.95);
}
.slider-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  position: relative;
}
.slider-set {
  min-width: 100%;
  transition: opacity 0.4s var(--transition), transform 0.4s var(--transition);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.slider-set.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  z-index: 2;
  transform: none;
}
@media (max-width: 900px) {
  .slider-track {
    max-width: 100%;
  }
  .section {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .about-content, .services-grid, .services-list {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  .portfolio-images {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .portfolio-image {
    max-width: 100%;
    width: 100%;
  }
  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding: 1.2rem 1rem 1.2rem 1rem;
  }
  .navbar .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .navbar .nav-links {
    gap: 1.5rem;
    justify-content: flex-start;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .logo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    padding: 1rem;
    gap: 1rem;
  }
  .navbar .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 220px;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: none;
    border-radius: 0 0 1.5rem 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .navbar .nav-links.open {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 220px;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: none;
    border-radius: 0 0 1.5rem 1.5rem;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .section {
    padding: 1.2rem 0.5rem;
  }
  .booking-form {
    padding: 1.2rem 0.5rem;
  }
}

/* Hero CTA Buttons Layout */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
  }
} 

/* --- Portfolio Carousel Visual Enhancements --- */
.portfolio-slider {
  background: var(--grey-light);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(203,161,53,0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  position: relative;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.portfolio-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.portfolio-image {
  position: relative;
  flex: 1 1 200px;
  max-width: 320px;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--grey);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #fff, 0 4px 32px 0 rgba(203,161,53,0.18);
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* Reference gallery style for sharp, professional images */
.portfolio-image {
  width: 100%;
  max-width: 600px;
  height: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--grey);
  box-shadow: 0 0 0 4px #fff, 0 4px 32px 0 rgba(203,161,53,0.18);
  border: 3px solid var(--gold);
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0.8rem;
  box-shadow: none;
  background: var(--white);
}

/* Responsive portfolio images and slider - no scrollbars */
.portfolio-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.portfolio-image {
  position: relative;
  flex: 1 1 45%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  background: var(--grey);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px #fff, 0 4px 32px 0 rgba(203,161,53,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.8rem;
  box-shadow: none;
  background: var(--white);
}

.slider-set {
  overflow: hidden;
}

.slider-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.slider-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.7rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(203,161,53,0.12);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.slider-btn.prev {
  left: -2.2rem;
}
.slider-btn.next {
  right: -2.2rem;
}
.slider-btn:hover, .slider-btn:focus {
  background: var(--black);
  color: var(--gold);
  outline: none;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 24px rgba(203,161,53,0.18);
}
.slider-btn:active {
  transform: translateY(-50%) scale(0.96);
}

/* Progress Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grey);
  border: 2px solid var(--gold);
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  border: 2px solid var(--gold);
}

.portfolio-caption {
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}
.portfolio-caption h3 {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.portfolio-caption p {
  color: var(--black);
  font-size: 1.15rem;
}

@media (max-width: 900px) {
  .portfolio-slider {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .portfolio-images {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .portfolio-image {
    max-width: 100%;
    width: 100%;
  }
  .slider-btn.prev {
    left: -1.2rem;
  }
  .slider-btn.next {
    right: -1.2rem;
  }
}
@media (max-width: 600px) {
  .portfolio-slider {
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
  .slider-btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }
  .slider-btn.prev {
    left: -0.7rem;
  }
  .slider-btn.next {
    right: -0.7rem;
  }
} 

/* Ensure images are not scaled beyond native width and retain aspect ratio */
img {
  max-width: 100%;
  height: auto;
}

.portfolio-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 10px;
  background: var(--grey);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px #fff, 0 4px 32px 0 rgba(203,161,53,0.18);
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0.8rem;
  box-shadow: none;
  background: var(--white);
} 