*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #FDFCF8;
  color: #121212;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

::selection {
  background: #5D1A1B;
  color: white;
}

h1, h2, h3, h4, .serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.text-9xl {
  font-size: 8rem;
}

.italic {
  font-style: italic;
}

.font-light {
  font-weight: 300;
}

.font-bold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.5em;
}

.tracking-wider {
  letter-spacing: 0.3em;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

@media (max-width: 768px) {
  .text-6xl {
    font-size: 3rem;
  }
  .text-9xl {
    font-size: 4.5rem;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

.grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.lg-col-4 {
  grid-column: span 4;
}

.lg-col-6 {
  grid-column: span 6;
}

.lg-col-8 {
  grid-column: span 8;
}

.lg-col-12 {
  grid-column: span 12;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.gap-8 {
  gap: 2rem;
}

.gap-16 {
  gap: 4rem;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 2.5rem 0;
  transition: all 0.5s ease;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav.nav-scrolled {
  background: rgba(253, 252, 248, 0.98);
  padding: 1.5rem 0;
  box-shadow: 0 10px 30px -15px rgba(27, 48, 34, 0.1);
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #FDFCF8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 40;
}
.nav-links.active {
  transform: translateX(0);
}
.nav-links a {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
}
.nav-links a.btn-inquiry {
  border: 1px solid #5D1A1B;
  padding: 1rem 3rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-style: normal;
}
@media (min-width: 1024px) {
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    gap: 4rem;
    transform: none;
    transition: none;
    z-index: auto;
  }
  .nav-links a {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-family: "Inter", sans-serif;
    font-style: normal;
  }
  .nav-links a:hover {
    color: #5D1A1B;
  }
  .nav-links a.btn-inquiry {
    border-color: #1B3022;
    padding: 0.75rem 1.5rem;
    font-size: 0.5625rem;
  }
  .nav-links a.btn-inquiry:hover {
    background: #1B3022;
    color: white;
  }
}

.mobile-nav-toggle {
  background: none;
  border: none;
  color: #1B3022;
  width: 2rem;
  height: 2rem;
  padding: 0;
  z-index: 51;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.mobile-nav-toggle svg {
  width: 100%;
  height: 100%;
}
.mobile-nav-toggle.active {
  transform: rotate(90deg);
  color: #5D1A1B;
}
@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.brand-identity {
  display: flex;
  flex-direction: column;
  z-index: 51;
}
.brand-identity .brand-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #1B3022;
}
.brand-identity .brand-subline {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 0.25rem;
}

.image-shroud {
  position: relative;
  overflow: hidden;
  background: #1B3022;
}
.image-shroud img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(15%) contrast(102%) saturate(90%);
  opacity: 0.9;
}
.image-shroud:hover img {
  transform: scale(1.08);
  opacity: 1;
}
.image-shroud .brand-seal {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}

.brand-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px double #5D1A1B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5D1A1B;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  font-style: italic;
}
.brand-seal.seal-white {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-inquiry {
  padding: 0.75rem 1.5rem;
  border: 1px solid #1B3022;
  font-size: 0.5625rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4em;
  transition: all 0.5s ease;
}
.btn-inquiry:hover {
  background: #1B3022;
  color: white;
}

.btn-audience {
  padding: 1.5rem 5rem;
  border: 1px solid #5D1A1B;
  color: #5D1A1B;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.6em;
  transition: all 0.7s ease;
}
.btn-audience:hover {
  background: #5D1A1B;
  color: white;
}

.link-archive {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5em;
  border-bottom: 1px solid #5D1A1B;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  display: inline-block;
  transition: all 0.5s ease;
}
.link-archive:hover {
  background: #5D1A1B;
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-oxblood {
  color: #5D1A1B;
}

.bg-oxblood {
  background-color: #5D1A1B;
}

.text-forest {
  color: #1B3022;
}

.bg-forest {
  background-color: #1B3022;
}

.border-forest {
  border-color: #1B3022;
}

.text-gold {
  color: #9B815E;
}

.bg-gold {
  background-color: #9B815E;
}

.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-700 {
  color: #374151;
}

.bg-paper {
  background-color: #FDFCF8;
}

.bg-smoke {
  background-color: #E8E6E1;
}

.border-smoke {
  border-color: #E8E6E1;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-40 {
  margin-top: 10rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-8 {
  padding-left: 2rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-16 > * + * {
  margin-top: 4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.line-accent {
  height: 1px;
  background-color: #121212;
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}
.line-accent.scale-x-100 {
  transform: scaleX(1);
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.aspect-4-5 {
  aspect-ratio: 4/5;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

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