/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f5f2ed;
  --charcoal: #1a1a1a;
  --gold: #c9a961;
  --gray: #666;
  --light-gray: #999;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Offset for fixed header */
}

body {
  font-family: 'Sorts Mill Goudy', serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--cream);
  padding: 30px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 40px;
  z-index: 100;
}

.logo img {
  height: 75px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  opacity: 1;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-wrap: nowrap;
  padding-left: 140px;
}

.nav a {
  text-transform: uppercase;
  font-weight: 400;
}

.nav a[href="products.html"] {
  background-color: var(--gold);
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav a[href="products.html"]:hover {
  background-color: var(--charcoal);
  opacity: 1;
  transform: translateY(-2px);
}

.nav__decorative-left {
  display: flex;
  align-items: center;
  width: 40px;
  margin-left: 100px;
  margin-right: 15px;
}

.nav__decorative-left svg {
  width: 100%;
  height: 20px;
  color: var(--charcoal);
}

.nav__decorative-right {
  display: flex;
  align-items: center;
  width: 40px;
  margin-left: 15px;
}

.nav__decorative-right svg {
  width: 100%;
  height: 20px;
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 40px;
}

.nav-toggle__line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;

  /* Vintage Filter Effects */
  filter: sepia(35%) contrast(1.1) brightness(0.95) saturate(0.8);

  /* Subtle zoom animation for dramatic effect */
  animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.35);
  z-index: 1;

  /* Additional vintage vignette effect */
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.3);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero__logo {
  width: 250px;
  height: auto;
  margin-bottom: 50px;
  filter: brightness(0) invert(1);
}

.hero__title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 40px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.btn--hero {
  padding: 15px 40px;
  font-size: 16px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: 500;
  display: inline-block;
  margin-top: 20px;
}

.btn--hero:hover {
  background-color: white;
  color: var(--charcoal);
  opacity: 1;
}

/* Story Section */
.story-section {
  padding: 50px 0;
  background-color: var(--cream);
}

.story__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.story__text h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
  font-style: italic;
}

.story__text p {
  margin-bottom: 12px;
  color: var(--gray);
}

/* Services Section */
.services {
  padding: 50px 0;
  background-color: #fff;
}

.services__header {
  text-align: center;
  margin-bottom: 30px;
}

.services__subtitle {
  color: var(--gray);
  font-style: italic;
  font-size: 20px;
  margin-top: 10px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
}

.service-card__icon {
  margin-bottom: 15px;
}

.service-card__icon svg {
  width: 80px;
  height: 80px;
  color: var(--charcoal);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.service-card__price {
  color: var(--gold);
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 400;
}

.service-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
}

/* Team Section */
.team {
  padding: 50px 0;
  background-color: var(--cream);
}

.team__header {
  text-align: center;
  margin-bottom: 30px;
}

.team__subtitle {
  color: var(--gray);
  font-size: 20px;
  margin-top: 20px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team__single {
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  background: white;
  padding: 40px 30px;
  transition: transform 0.3s ease;
}

.team-card--single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  padding: 60px;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  margin: 0 auto 30px;
}

.team-card--single .team-card__photo {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  margin: 0;
}

.team-card h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 25px;
}

.team-card__bio {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Sorts Mill Goudy', serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--charcoal);
  background: transparent;
}

.btn--nav {
  padding: 10px 25px;
  font-size: 14px;
  border: 2px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-weight: 500;
  white-space: nowrap;
}

.btn--nav:hover {
  background-color: var(--charcoal);
  color: var(--cream);
  opacity: 1;
}

.btn--book {
  background-color: var(--charcoal);
  color: white;
}

.btn--book:hover {
  background-color: transparent;
  color: var(--charcoal);
  opacity: 1;
}

/* Contact Section */
.contact {
  padding: 50px 0;
  background-color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  padding-top: 20px;
}

.contact__location {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact__details>div {
  margin-bottom: 20px;
}

.contact__details p {
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 5px;
}

.contact__details a {
  color: var(--charcoal);
  text-decoration: underline;
}

.hours__title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 5px;
  color: var(--charcoal);
}

.hours ul {
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--gray);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.hours li span:first-child {
  font-weight: 400;
  color: var(--charcoal);
}

.contact__map {
  width: 100%;
  height: 500px;
  background-color: #e0e0e0;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Instagram Feed Section */
.instagram-feed {
  padding: 50px 0;
  padding-top: 40px;
  background-color: var(--cream);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.instagram-feed__header {
  text-align: center;
  margin-bottom: 30px;
}

.instagram-feed__subtitle {
  margin-top: 15px;
  font-size: 20px;
}

.instagram-feed__subtitle a {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.instagram-feed__subtitle a:hover {
  color: var(--gold);
  opacity: 1;
}

.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-feed__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 4px;
}

.instagram-feed__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: saturate(0.9);
}

.instagram-feed__item:hover img {
  transform: scale(1.1);
}

.instagram-feed__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-feed__item:hover .instagram-feed__overlay {
  opacity: 1;
}

.instagram-feed__overlay span {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Instagram Feed Embed */
.instagram-embed-container {
  width: 100%;
  margin-bottom: 20px;
}

.instagram-embed-container figure {
  margin: 0;
  padding: 0;
}

/* Reviews Section */
.reviews-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.reviews-title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--charcoal);
}

.reviews-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 60px;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow: hidden;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: right;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.reviews-nav:hover {
  background-color: var(--charcoal);
  color: white;
}

.reviews-nav:hover svg {
  stroke: white;
}

.reviews-nav--prev {
  left: 0;
}

.reviews-nav--next {
  right: 0;
}

.reviews-nav svg {
  stroke: var(--charcoal);
  transition: stroke 0.3s ease;
}

.view-all-reviews {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.view-all-reviews:hover {
  background-color: var(--charcoal);
  color: white;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
  background-color: var(--charcoal);
  color: white;
  padding: 20px 0 15px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer__logo {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer__monogram {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer__brand p {
  font-size: 12px;
  color: var(--light-gray);
  margin-bottom: 3px;
}

.footer__social {
  text-align: right;
}

.footer__social {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.footer__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background-color: white;
  transform: translateY(-3px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer__social a:hover svg {
  fill: var(--charcoal);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav {
    gap: 20px;
    font-size: 13px;
  }

  .nav__decorative-left,
  .nav__decorative-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }

  .logo {
    left: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 5px;
  }

  .logo img {
    height: 60px;
  }

  .nav {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background-color: var(--cream);
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav__decorative-left,
  .nav__decorative-right {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active .nav-toggle__line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle__line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero__title {
    font-size: 48px;
  }

  .services__grid,
  .team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-card--single {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    text-align: center;
  }

  .team-card--single .team-card__photo {
    height: 300px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__map {
    height: 400px;
  }

  .instagram-feed__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .reviews-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
  }

  .reviews-carousel {
    padding: 0 50px;
  }

  .review-card:nth-child(n+3) {
    display: none;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .site-footer {
    padding: 20px 0 15px;
  }

  .story-section,
  .services,
  .team,
  .contact,
  .instagram-feed {
    padding: 40px 0;
  }
}