body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
}

.logo h1,
.nav-link,
.section-title,
.events-heading,
.event-date,
.event-details h4 {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.header {
  background: #fff;
  padding: 1.2rem 0 0.7rem 0;
  border-bottom: 1px solid #eee;
}

.brand-logo {
  display: block;
  margin: 0 auto 0.2rem auto;
  max-width: 108px;
  height: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

.logo h1 {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  text-align: center;
  font-weight: 400;
  margin: 0;
  color: #222;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
  overflow-x: auto;
  max-width: 100vw;
}

/* Reduce gap between nav icons */
.nav-list li:last-child,
.nav-list li:nth-last-child(2),
.nav-list li:nth-last-child(3) {
  margin-right: 0.25rem;
}
.nav-list li:last-child {
  margin-right: 0;
}

.nav-link {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-decoration: none;
  color: #222;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
}

.nav-link:hover,
.nav-link.active {
  color: #b48a78;
  border-bottom: 2px solid #b48a78;
}

.hero {
  text-align: center;
  padding: 2.2rem 0 1.2rem 0;
  background: #fff;
  margin-top: 1.25rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #b48a78;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #b48a78;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #a06c5a;
}

.collections {
  margin-top: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.2rem;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 1.2rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.collection-item {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  padding-bottom: 1.5rem;
}

.collection-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.collection-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.collection-info {
  padding: 1.2rem 1rem 0 1rem;
  text-align: center;
}

.collection-info h3 {
  font-family: 'Playfair Display', serif;
  margin: 0.5rem 0 0.3rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d2d2d;
}

.collection-info p {
  margin: 0;
  color: #6a6a6a;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 320px;
  min-width: 260px;
}

.about-image {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 264px;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.about-text p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .collections-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .about-image img {
    max-width: 84vw;
    margin-bottom: 1.5rem;
  }
  .brand-logo {
    max-width: 67px;
    margin-bottom: 0.2rem;
  }
  .nav-list {
    gap: 1rem;
    flex-wrap: wrap;
    overflow-x: auto;
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .container {
    padding: 0 0.3rem;
  }
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .logo {
    margin-bottom: 0.3rem;
  }
  .logo h1 {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    text-align: center;
    word-break: break-word;
    line-height: 1.2;
  }
  .brand-logo {
    max-width: 56px;
    margin-bottom: 0.2rem;
  }
  .nav {
    width: 100%;
    justify-content: center;
  }
  .nav-list {
    gap: 0.5rem;
    flex-wrap: wrap;
    overflow-x: auto;
    max-width: 100vw;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    width: auto;
    text-align: center;
    letter-spacing: 0.05em;
  }
  .nav-contact {
    width: auto;
    position: relative;
  }
  .contact-dropdown {
    left: 50%;
    transform: translateX(-50%);
    min-width: 90px;
    max-width: 120px;
    width: auto;
    display: none;
  }
  .nav-contact:hover .contact-dropdown,
  .nav-contact:focus-within .contact-dropdown {
    display: flex;
  }
  .collection-item, .gallery-item {
    padding: 0.7rem 0.3rem 1rem 0.3rem;
  }
  .collection-image img, .gallery-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .collection-info h3 {
    font-size: 1rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hide dropdown on mobile when not hovered or focused */
@media (max-width: 600px) {
  .nav-contact:not(:hover):not(:focus-within) .contact-dropdown {
    /* Remove !important so JS click toggle works */
    display: none;
  }
}

/* Hide bullets for all lists in nav */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 2.2rem 0 1.2rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 2.2rem;
}

.social-link {
  color: #b48a78;
  font-size: 2rem;
  transition: color 0.2s;
}
.social-link:hover {
  color: #222;
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.events-list {
  margin-top: 2rem;
}

.events-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #b48a78;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2.2rem 0 1.2rem 0;
  text-align: left;
}

.event-card {
  display: flex;
  align-items: center;
  background: #faf9f7;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  gap: 1.5rem;
}
.event-card.past {
  opacity: 0.7;
  background: #f3f3f3;
}
.event-date {
  min-width: 60px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}
.event-date .day {
  font-size: 1.6rem;
  font-weight: 700;
  color: #b48a78;
  display: block;
}
.event-date .month {
  font-size: 1rem;
  color: #888;
  display: block;
  text-transform: uppercase;
}
.event-date .year {
  font-size: 0.9rem;
  color: #bbb;
  display: block;
}
.event-details h4 {
  margin: 0 0 0.2rem 0;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: #222;
}
.event-details p {
  margin: 0.1rem 0;
  color: #555;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .event-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.7rem;
  }
  .events-heading {
    text-align: center;
  }
} 

.nav-contact {
  position: relative;
}
.contact-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0.5rem 0.6rem;
  min-width: 0;
  max-width: none;
  width: auto;
  z-index: 100;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
}

.nav-contact:hover .contact-dropdown,
.nav-contact:focus-within .contact-dropdown {
  display: flex;
}

.contact-dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.contact-dropdown a {
  color: #b48a78;
  font-size: 1.4rem;
  padding: 0.1rem 0.2rem;
  display: inline-block;
  transition: color 0.2s;
}
.contact-dropdown a:hover {
  color: #222;
} 

.hero-title-text {
  display: inline-block;
  font-size: clamp(1.2rem, 5vw, 2.6rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  word-break: break-word;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-title-text {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
} 

@media (max-width: 600px) {
  .container {
    padding: 0 1.1rem;
  }
  .hero {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding-top: 0.6rem; /* half of previous 1.2rem */
  }
  .header {
    margin-bottom: 0.25rem; /* half of previous 0.5rem */
  }
  .hero-content {
    margin-top: 0.1rem; /* half of previous 0.2rem */
  }
  .hero-title-text {
    font-size: clamp(0.88rem, 4.8vw, 1.2rem); /* 20% smaller than previous clamp(1.1rem, 6vw, 1.5rem) */
  }
} 

.contact-form-section {
  max-width: 440px;
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.2rem;
  color: #b48a78;
  letter-spacing: 0.05em;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.3rem;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  margin-top: 0.2rem;
  background: #faf9f7;
  box-sizing: border-box;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1.5px solid #b48a78;
  outline: none;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-form .cta-button {
  background: #b48a78;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  padding: 0.45rem 0;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 33%;
  min-width: 70px;
  display: inline-block;
}
.contact-form .cta-button:hover {
  background: #a06c5a;
} 

.contact-form-modal form.contact-form {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  border: 1.5px solid #e0e0e0;
  max-width: 700px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2.2rem;
} 

.nav-subscribe {
  display: inline-block;
  position: relative;
}
#subscribe-bell {
  position: relative;
  padding-left: 0.2rem;
  font-size: 1.1rem;
}
#subscribe-bell .fa-bell {
  position: relative;
  top: -2px;
  vertical-align: middle;
  transition: color 0.2s;
}
#subscribe-bell:hover .fa-bell,
#subscribe-bell:focus .fa-bell {
  color: #a06c5a;
}
.tooltip {
  display: none;
  position: absolute;
  top: 2.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #b48a78;
  font-size: 0.95rem;
  padding: 0.4rem 0.9rem;
  border-radius: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  white-space: nowrap;
  z-index: 1000;
  font-family: 'Inter', Arial, sans-serif;
}
#subscribe-bell:hover .tooltip,
#subscribe-bell:focus .tooltip {
  display: block;
}

#subscribe-modal .contact-form {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  border: 1.5px solid #e0e0e0;
  max-width: 572px;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2.2rem;
} 

.studio-journal-layout {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.2rem;
}
.studio-journal-toc {
  flex: 0 0 260px;
  background: #faf7f4;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 1.2rem 1rem;
  min-width: 180px;
  max-width: 260px;
  height: fit-content;
}
.studio-journal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.studio-journal-toc li {
  cursor: pointer;
  padding: 0.7rem 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  color: #b48a78;
  transition: background 0.15s, color 0.15s;
}
.studio-journal-toc li.active, .studio-journal-toc li:hover {
  background: #f2e6de;
  color: #222;
}
.studio-journal-toc .journal-date {
  font-size: 0.92rem;
  color: #888;
  margin-right: 0.7rem;
}
.studio-journal-content {
  flex: 1 1 0%;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 2.2rem;
  min-width: 0;
}
.studio-journal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #b48a78;
  margin-bottom: 0.5rem;
}
.studio-journal-content .journal-date {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 1.2rem;
}
.studio-journal-content p {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
@media (max-width: 900px) {
  .studio-journal-layout {
    flex-direction: column;
    gap: 1.2rem;
  }
  .studio-journal-toc {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.2rem;
  }
  .studio-journal-content {
    padding: 1.2rem 1rem;
  }
} 

/* Always show contact-dropdown if display:flex is set inline (for click toggle) */
.contact-dropdown[style*="display: flex"] {
  display: flex !important;
} 

/* Make all nav icons the same size and color */
.nav-link i {
  font-size: 1.4rem;
  color: #222;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  transition: color 0.2s;
}
.nav-link:hover i {
  color: #b48a78;
} 

@media (max-width: 600px) {
  .nav-link i {
    font-size: 1.1rem;
  }
} 

/* Hamburger menu styles */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  z-index: 1002;
  box-shadow: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 6px 0;
  background: #b48a78;
  border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px #b48a7822;
}
.hamburger span:nth-child(1),
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  width: 28px;
}
.hamburger:hover span {
  background: #a06c54;
  box-shadow: 0 0 4px #b48a7833;
}

@media (max-width: 600px) {
  .nav-list {
    display: none !important;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
  }
  .mobile-nav-list {
    display: none;
  }
  .mobile-nav-list.open {
    display: flex !important;
    flex-direction: column;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 1001;
    align-items: center;
    justify-content: flex-start;
    padding: 4.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  .mobile-nav-list li {
    width: 100%;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
  }
  .mobile-nav-list .nav-link {
    font-size: 1.1rem;
    padding: 0.7rem 0.5rem;
    width: 100%;
    text-align: left;
    color: #222;
    border-radius: 0.5rem;
    background: none;
    display: flex;
    align-items: center;
  }
  .mobile-nav-list .nav-link i {
    font-size: 1.2rem;
    margin-right: 0.7rem;
    vertical-align: middle;
  }
  .mobile-nav-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    margin: 0.5rem 0 1.2rem 0;
  }
  .mobile-nav-icons .nav-link {
    justify-content: center;
    padding: 0.5rem;
    width: auto;
    font-size: 1.2rem;
  }
  .mobile-nav-icons .nav-link i {
    margin-right: 0;
  }
} 

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
} 

.mobile-nav-list {
  display: none;
} 

@media (max-width: 600px) {
  .contact-form-modal {
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding-top: 0;
    padding-bottom: 1vh;
  }
  .contact-form-modal form.contact-form {
    margin-top: 1.5rem !important;
    margin-left: auto;
    margin-right: auto;
    position: static;
    left: unset;
    top: unset;
    transform: none;
  }
  .contact-form {
    font-size: 0.97rem;
  }
  .contact-form h2 {
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
  }
  .form-group {
    margin-bottom: 0.4rem;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 0.97rem;
    padding: 0.32rem 0.5rem;
    min-height: 1.7rem;
    line-height: 1.1;
  }
  .contact-form textarea {
    min-height: 2.2rem;
    max-height: 5.5rem;
  }
  .contact-form .cta-button {
    font-size: 1rem;
    padding: 0.5rem 0;
    width: 100%;
    margin-top: 0.7rem;
  }
} 
/* Event Modal Styles */
.event-modal {
  backdrop-filter: blur(5px);
}

.event-modal-content {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.event-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-card h4 {
  transition: color 0.2s ease;
}

.event-card:hover h4 {
  color: #b48a78;
}

/* Mobile responsiveness for event modal */
@media (max-width: 768px) {
  .event-modal-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
  }
  
  .event-modal-content h2 {
    font-size: 1.5rem;
  }
  
  .event-modal-content h3 {
    font-size: 1.2rem;
  }
}

/* Event Modal Image Styles */
.event-modal img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.event-modal img:hover {
  transform: scale(1.02);
}

/* Ensure images fit properly in modal */
.event-modal-content img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: #f8f8f8;
  padding: 0.5rem;
}
