.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 80px;
  background: rgba(246, 233, 224, 0.96);
  border-bottom: 1px solid #e0d4ca;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header__bar {
  height: 80px;
  overflow: hidden;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: 1rem;
}
.header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}
.header__logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header .custom-logo-link {
  display: flex;
  align-items: center;
  height: 80px;
  line-height: 0;
  text-decoration: none;
}
.header .custom-logo, .header__logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__logo-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.header__logo-studio {
  font-size: 0.75rem;
  font-weight: 400;
  color: #666666;
  letter-spacing: 0.04em;
}
.header__nav {
  justify-self: center;
  min-width: 0;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger .hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__cta {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__cta {
    display: none;
  }
}
.header__menu-notice {
  margin: 0;
  font-size: 0.75rem;
  color: #333333;
}
.header__menu-notice a {
  color: inherit;
}
.header__mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
}
.header__mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #f6e9e0;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.header__mobile-nav.is-open .mobile-nav__inner {
  transform: translateX(0);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}
.mobile-nav__list a {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.7;
  text-decoration: none;
  font-weight: 500;
}
.mobile-nav__contact a {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  text-decoration: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.page-home .header--home {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  height: auto;
  background: #f6e9e0;
  border-bottom: none;
  box-shadow: none;
}
body.page-home .header--home .header__bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
body.page-home .header--home.scrolled .header__bar {
  background: rgba(246, 233, 224, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body.page-home .header__logo-brand {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
}
body.page-home .header__logo-studio {
  display: none;
}
body.page-home .nav__link {
  color: #000000;
  font-weight: 500;
}
body.page-home .nav__link:hover, body.page-home .nav__link.active-section {
  color: hsl(0, 0%, -12%);
}
body.page-home .header__hamburger .hamburger-line {
  background: #000000;
}
body.page-home .header__inner {
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
}
body.page-home .header__nav {
  justify-self: center;
}
body.page-home .header__cta {
  justify-self: end;
}
body.page-home .custom-logo,
body.page-home .header__logo-img {
  max-height: 48px;
  max-width: 140px;
}
body.page-home .nav__list {
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 2vw, 1.75rem);
}
body.page-home .nav__link {
  white-space: nowrap;
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .nav {
    display: none;
  }
}
.nav__link {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav__link:hover, .nav__link.active-section {
  color: #000000;
}

.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.75);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__logo-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.footer__logo-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__tagline {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 1.25rem 0;
  max-width: 32ch;
}
.footer__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__social-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__social-link:hover {
  color: #ffffff;
}
.footer__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}
.footer__contact-list a, .footer__contact-list span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer__contact-list a:hover {
  color: #ffffff;
}
.footer__address, .footer__hours {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer__links a:hover {
  color: #ffffff;
}
.footer__links--compact {
  margin-top: 1.5rem;
  gap: 0.5rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer__copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: #1a1a1a;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #000000;
  border-color: #e0d4ca;
}
.btn-outline:hover {
  background: #ede0d6;
  border-color: rgb(208.9428571429, 191.1142857143, 176.2571428571);
  color: #000000;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.cta-banner .btn-primary:hover {
  background: #faf4ef;
  border-color: #faf4ef;
}

.cta-banner .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.site-main {
  padding-top: 80px;
}

body.page-home .site-main {
  padding-top: 0;
}

.text-left {
  text-align: left;
}

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